Adamgoose\Routing\Annotations\Scanner::getClassesToScan PHP 메소드

getClassesToScan() 보호된 메소드

Get all of the ReflectionClass instances in the scan array.
protected getClassesToScan ( ) : array
리턴 array
    protected function getClassesToScan()
    {
        $classes = [];
        foreach ($this->scan as $scan) {
            try {
                $classes[] = new ReflectionClass($scan);
            } catch (Exception $e) {
                //
            }
        }
        return $classes;
    }