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

Get the classes to be scanned by the provider.
public modelScans ( ) : array
Результат array
 /**
  * Get the route definitions for the annotations.
  *
  * @return string
  */
 protected function getRouteDefinitions()
 {
     $scanner = $this->laravel->make('annotations.model.scanner');
     $scanner->setClassesToScan($this->provider->modelScans());
     return '<?php ' . PHP_EOL . PHP_EOL . $scanner->getModelDefinitions() . PHP_EOL;
 }