%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/roave/better-reflection/src/Reflector/ |
| Current File : /home/graphicd/public_html/vebto/vendor/roave/better-reflection/src/Reflector/Reflector.php |
<?php
declare(strict_types=1);
namespace Roave\BetterReflection\Reflector;
use Roave\BetterReflection\Reflection\Reflection;
use Roave\BetterReflection\Reflector\Exception\IdentifierNotFound;
/**
* This interface is used to ensure a reflector implements these basic methods.
*/
interface Reflector
{
/**
* Create a reflection from the named identifier.
*
* @throws IdentifierNotFound
*/
public function reflect(string $identifierName) : Reflection;
}