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;
    }