Make a few additional changes that were missed before

This commit is contained in:
Kevin MacMartin 2016-08-19 16:54:28 -04:00
parent 21c62e37e4
commit ec186a4edb
4 changed files with 13 additions and 9 deletions

4
.gitignore vendored
View file

@ -8,4 +8,6 @@
/public/uploads
/storage/exports
/.idea
/.env
.env
Homestead.yaml
Homestead.json

View file

@ -1,12 +1,13 @@
<?php namespace App\Http\Controllers;
<?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
class Controller extends BaseController {
use DispatchesJobs, ValidatesRequests;
class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}

View file

@ -51,7 +51,7 @@ return [
|
*/
'url' => env('APP_URL', 'http://localhost'),
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
@ -120,7 +120,7 @@ return [
|
*/
'log' => 'single',
'log' => env('APP_LOG', 'single'),
'log_level' => env('APP_LOG_LEVEL', 'debug'),
@ -172,6 +172,7 @@ return [
*/
App\Providers\AppServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\AuthServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,

View file

@ -86,6 +86,6 @@ return [
|
*/
'prefix' => env('CACHE_NAME', 'laravel'),
'prefix' => env('CACHE_NAME', 'hypothetical'),
];