StyleCI fixes

This commit is contained in:
Jonny Barnes 2016-09-06 16:44:15 +01:00
parent 577fae0540
commit 1af9dd35ab
6 changed files with 3 additions and 5 deletions

View file

@ -2,7 +2,6 @@
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider

View file

@ -72,7 +72,7 @@ class RouteServiceProvider extends ServiceProvider
Route::group([
'middleware' => 'api',
'namespace' => $this->namespace,
'prefix' => 'api'
'prefix' => 'api',
], function ($router) {
require base_path('routes/api.php');
});