for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Leaditin\Annotations\Exception;
/**
* Class ReflectionException
*
* @package Leaditin\Annotations\Exception
* @author Igor Vuckovic <[email protected]>
*/
class ReflectionException extends \LogicException
{
* @param string $method
* @return ReflectionException
public static function undefinedMethodAnnotations(string $method) : ReflectionException
return new self(sprintf(
'Undefined annotations for method "%s"',
$method
));
}
* @param string $property
public static function undefinedPropertyAnnotations(string $property) : ReflectionException
'Undefined annotations for property "%s"',
$property