Fakerino\Core\Entity\EntityInfo::__construct PHP Метод

__construct() публичный Метод

Constructor
public __construct ( object $entity )
$entity object
    public function __construct($entity)
    {
        if (!is_object($entity)) {
            throw new \RuntimeException('The value provided is not a Class');
        }
        $this->reflectionEntity = new \ReflectionClass(get_class($entity));
    }