Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/type-info/Type.php
Ðазад
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\TypeInfo; use Symfony\Component\TypeInfo\Type\CompositeTypeInterface; use Symfony\Component\TypeInfo\Type\WrappingTypeInterface; /** * @author Mathias Arlaud <mathias.arlaud@gmail.com> * @author Baptiste Leduc <baptiste.leduc@gmail.com> */ abstract class Type implements \Stringable { use TypeFactoryTrait; /** * Tells if the type is satisfied by the $specification callable. * * @param callable(self): bool $specification */ public function isSatisfiedBy(callable $specification): bool { return $specification($this); } /** * Tells if the type (or one of its wrapped/composed parts) is identified by one of the $identifiers. */ public function isIdentifiedBy(TypeIdentifier|string ...$identifiers): bool { $specification = static function (Type $type) use (&$specification, $identifiers): bool { if ($type instanceof WrappingTypeInterface) { return $type->wrappedTypeIsSatisfiedBy($specification); } if ($type instanceof CompositeTypeInterface) { return $type->composedTypesAreSatisfiedBy($specification); } return $type->isIdentifiedBy(...$identifiers); }; return $this->isSatisfiedBy($specification); } public function isNullable(): bool { return false; } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка