Class bootstrapper fix

This commit is contained in:
Nabeel Shahzad
2017-12-16 22:13:53 -06:00
parent d964a3f0f3
commit 091e5593f9
2 changed files with 71 additions and 70 deletions

69
bootstrap/application.php Normal file
View File

@@ -0,0 +1,69 @@
<?php
use Illuminate\Foundation\Application as LaravelApplication;
/**
* Customized container to allow some of the base Laravel
* configurations to be overridden
*/
class Application extends LaravelApplication
{
public function __construct(string $basePath = null)
{
parent::__construct(dirname(__DIR__) . '/');
$this->loadEnvironmentFrom('.env');
$this->useDatabasePath($this->basePath . '/app/Database');
$this->useStoragePath($this->basePath . '/storage');
}
/**
*
*/
public function bindInterfaces()
{
$this->singleton(
Illuminate\Contracts\Http\Kernel::class,
App\Http\Kernel::class
);
$this->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
$this->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
}
/**
* Override paths
*/
public function configPath($path = '')
{
return $this->basePath . DS . 'config' . ($path ? DS . $path : $path);
}
public function environmentPath()
{
return $this->environmentPath ?: $this->basePath;
}
public function langPath()
{
return $this->resourcePath() . DIRECTORY_SEPARATOR . 'lang';
}
public function publicPath()
{
return $this->basePath . DS . 'public';
}
public function resourcePath($path = '')
{
return $this->basePath . DS . 'resources' . ($path ? DS . $path : $path);
}
}