From 999cfa47ed443542e4507497c4b4c75aa53c3ae1 Mon Sep 17 00:00:00 2001 From: Anton Vasiliev <1695147@gmail.com> Date: Tue, 29 Aug 2023 09:42:24 +0100 Subject: [PATCH] #2407 - Remove unused `IsAnnotated` class --- .../ReturnType/Specification/IsAnnotated.php | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 Library/FunctionLike/ReturnType/Specification/IsAnnotated.php diff --git a/Library/FunctionLike/ReturnType/Specification/IsAnnotated.php b/Library/FunctionLike/ReturnType/Specification/IsAnnotated.php deleted file mode 100644 index 5ba517b7e5..0000000000 --- a/Library/FunctionLike/ReturnType/Specification/IsAnnotated.php +++ /dev/null @@ -1,29 +0,0 @@ - - * - * For the full copyright and license information, please view - * the LICENSE file that was distributed with this source code. - */ - -namespace Zephir\FunctionLike\ReturnType\Specification; - -use Zephir\FunctionLike\ReturnType; - -final class IsAnnotated extends ReturnType\CompositeSpecification -{ - /** - * {@inheritdoc} - * - * @param ReturnType\TypeInterface $type - * - * @return bool - */ - public function isSatisfiedBy(ReturnType\TypeInterface $type) - { - return ReturnType\TypeInterface::TYPE_ANNOTATION == $type->getType(); - } -}