Laravel\Lumen\Application::path PHP Метод

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

Get the path to the application "app" directory.
public path ( ) : string
Результат string
    public function path()
    {
        return $this->basePath . DIRECTORY_SEPARATOR . 'app';
    }

Usage Example

 /**
  * Get the path to the application "app" directory.
  *
  * @return string 
  * @static 
  */
 public static function path()
 {
     return \Laravel\Lumen\Application::path();
 }