PluginProbe ʕ •ᴥ•ʔ
FAPI Member / 2.2.31
FAPI Member v2.2.31
2.2.33 2.2.32 trunk 1.9.47 2.1.18 2.2.24 2.2.25 2.2.26 2.2.28 2.2.29 2.2.30 2.2.31
fapi-member / libs / nette / utils / src / Utils / ObjectMixin.php
fapi-member / libs / nette / utils / src / Utils Last commit date
ArrayHash.php 1 month ago ArrayList.php 1 month ago Arrays.php 1 month ago Callback.php 1 month ago DateTime.php 1 month ago FileSystem.php 1 month ago Floats.php 1 month ago Helpers.php 1 month ago Html.php 1 month ago Image.php 1 month ago Json.php 1 month ago ObjectHelpers.php 1 month ago ObjectMixin.php 1 month ago Paginator.php 1 month ago Random.php 1 month ago Reflection.php 1 month ago Strings.php 1 month ago Type.php 1 month ago Validators.php 1 month ago exceptions.php 1 month ago
ObjectMixin.php
33 lines
1 <?php
2
3 /**
4 * This file is part of the Nette Framework (https://nette.org)
5 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6 */
7 declare (strict_types=1);
8 namespace FapiMember\Library\Nette\Utils;
9
10 use FapiMember\Library\Nette;
11 /**
12 * Nette\Object behaviour mixin.
13 * @deprecated
14 */
15 final class ObjectMixin
16 {
17 use Nette\StaticClass;
18 /** @deprecated use ObjectHelpers::getSuggestion() */
19 public static function getSuggestion(array $possibilities, string $value): ?string
20 {
21 trigger_error(__METHOD__ . '() has been renamed to Nette\Utils\ObjectHelpers::getSuggestion()', \E_USER_DEPRECATED);
22 return ObjectHelpers::getSuggestion($possibilities, $value);
23 }
24 public static function setExtensionMethod(): void
25 {
26 trigger_error('Class Nette\Utils\ObjectMixin is deprecated', \E_USER_DEPRECATED);
27 }
28 public static function getExtensionMethod(): void
29 {
30 trigger_error('Class Nette\Utils\ObjectMixin is deprecated', \E_USER_DEPRECATED);
31 }
32 }
33