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(); - } -}