Collective\Html\Eloquent\FormAccessible::getReflection PHP Method

getReflection() protected method

Get a ReflectionClass Instance
protected getReflection ( ) : ReflectionClass
return ReflectionClass
    protected function getReflection()
    {
        if (!$this->reflection) {
            $this->reflection = new ReflectionClass($this);
        }
        return $this->reflection;
    }