Skip to content

Commit

Permalink
Apply fixes from StyleCI (eveseat#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza authored Sep 18, 2017
1 parent 47d14cb commit c56d772
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 16 deletions.
3 changes: 1 addition & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
//

];

/**
Expand All @@ -30,7 +30,6 @@ class Kernel extends ConsoleKernel
protected function schedule(Schedule $schedule)
{


// Check that the schedules table exists. This
// could cause a fatal error if the app is
// still being setup or the db has not yet
Expand Down
2 changes: 1 addition & 1 deletion app/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Handler extends ExceptionHandler
* @var array
*/
protected $dontReport = [
//

];

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/EncryptCookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ class EncryptCookies extends Middleware
* @var array
*/
protected $except = [
//

];
}
4 changes: 2 additions & 2 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot()
{
//

}

/**
Expand All @@ -23,6 +23,6 @@ public function boot()
*/
public function register()
{
//

}
}
1 change: 0 additions & 1 deletion app/Providers/AuthServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ public function boot()

$this->registerPolicies();

//
}
}
1 change: 0 additions & 1 deletion app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ public function boot()

parent::boot();

//
}
}
3 changes: 0 additions & 3 deletions app/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class RouteServiceProvider extends ServiceProvider
public function boot()
{

//

parent::boot();
}

Expand All @@ -41,7 +39,6 @@ public function map()

$this->mapWebRoutes();

//
}

/**
Expand Down
2 changes: 1 addition & 1 deletion config/broadcasting.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
//

],
],

Expand Down
3 changes: 1 addition & 2 deletions public/index.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php

/**
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans.
*
* @package Laravel
* @author Taylor Otwell <[email protected]>
*/

define('LARAVEL_START', microtime(true));

/*
Expand Down
3 changes: 1 addition & 2 deletions server.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php

/**
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans.
*
* @package Laravel
* @author Taylor Otwell <[email protected]>
*/

$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
Expand Down

0 comments on commit c56d772

Please sign in to comment.