app\Application::publicPath PHP 메소드

publicPath() 공개 메소드

We have merged public path and base path.
public publicPath ( ) : string
리턴 string
    public function publicPath()
    {
        return $this->basePath;
    }

Usage Example

예제 #1
0
 /**
  * Get the path to the public / web directory.
  *
  * @return string 
  * @static 
  */
 public static function publicPath()
 {
     //Method inherited from \Illuminate\Foundation\Application
     return \App\Application::publicPath();
 }