PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
nette
/
utils
/
src
/
Utils
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Utils; use Nette; /** * Nette\Object behaviour mixin. * @deprecated */ final class ObjectMixin { use Nette\StaticClass; /** @deprecated use ObjectHelpers::getSuggestion() */ public static function getSuggestion(array $possibilities, string $value): ?string { trigger_error(__METHOD__ . '() has been renamed to Nette\Utils\ObjectHelpers::getSuggestion()', E_USER_DEPRECATED); return ObjectHelpers::getSuggestion($possibilities, $value); } public static function setExtensionMethod(): void { trigger_error('Class Nette\Utils\ObjectMixin is deprecated', E_USER_DEPRECATED); } public static function getExtensionMethod(): void { trigger_error('Class Nette\Utils\ObjectMixin is deprecated', E_USER_DEPRECATED); } }
[-] Html.php
[edit]
[+]
..
[-] Paginator.php
[edit]
[-] FileSystem.php
[edit]
[-] Arrays.php
[edit]
[-] Type.php
[edit]
[-] Reflection.php
[edit]
[-] ArrayList.php
[edit]
[-] Callback.php
[edit]
[-] Floats.php
[edit]
[-] Image.php
[edit]
[-] exceptions.php
[edit]
[-] ObjectMixin.php
[edit]
[-] DateTime.php
[edit]
[-] Helpers.php
[edit]
[-] Validators.php
[edit]
[-] Json.php
[edit]
[-] Strings.php
[edit]
[-] ObjectHelpers.php
[edit]
[-] Random.php
[edit]
[-] ArrayHash.php
[edit]