for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Distilleries\Expendable\Fondation;
use Distilleries\Expendable\ExpendableRoutingServiceProvider;
use Illuminate\Events\EventServiceProvider;
use Illuminate\Foundation\Application as BaseApplication;
class Application extends BaseApplication
{
/**
* Register all of the base service providers.
*
* @return void
*/
protected function registerBaseServiceProviders()
$this->register(new EventServiceProvider($this));
$this->register(new ExpendableRoutingServiceProvider($this));
}
* Override default application storage path.
* @return mixed
public function storagePath()
$path = env('STORAGE_PATH', $this->basePath . DIRECTORY_SEPARATOR . 'storage');
return $this->storagePath ?: $path;