コード例 #1
0
ファイル: Application.php プロジェクト: narrowspark/framework
 /**
  * Create a new application instance.
  *
  * Let's start make magic!
  *
  * @param array $paths
  */
 public function __construct(array $paths)
 {
     parent::__construct();
     /*
      * Here we are binding the paths configured in paths.php to the app. You
      * should not be changing these here. If you need to change these you
      * may do so within the paths.php file and they will be bound here.
      */
     $this->registerBaseServiceProviders();
     $this->bindInstallPaths($paths);
     $this->registerCacheFilePaths();
     $this->registerBaseBindings();
 }