%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/roave/better-reflection/src/Reflection/ |
| Current File : /home/graphicd/public_html/vebto/vendor/roave/better-reflection/src/Reflection/Reflection.php |
<?php
declare(strict_types=1);
namespace Roave\BetterReflection\Reflection;
/**
* This interface is used internally by the Generic reflector in order to
* ensure we are working with BetterReflection reflections.
*
* @internal
*/
interface Reflection
{
/**
* Get the name of the reflection (e.g. if this is a ReflectionClass this
* will be the class name).
*/
public function getName() : string;
}