Applied fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
Graham Campbell
2016-10-19 07:54:08 +00:00
committed by StyleCI Bot
parent 2dcccfca6f
commit 278a7b7b36
7 changed files with 67 additions and 49 deletions

View File

@@ -48,6 +48,7 @@ class Kernel extends ConsoleKernel
{ {
$schedule->command('cachet:beacon')->twiceDaily(0, 12); $schedule->command('cachet:beacon')->twiceDaily(0, 12);
} }
/** /**
* Register the Closure based commands for the application. * Register the Closure based commands for the application.
* *

View File

@@ -1,5 +1,14 @@
<?php <?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Http\Request; use Illuminate\Http\Request;
/* /*

View File

@@ -1,5 +1,14 @@
<?php <?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Foundation\Inspiring; use Illuminate\Foundation\Inspiring;
/* /*

View File

@@ -1,16 +1,15 @@
<?php <?php
/* /*
|-------------------------------------------------------------------------- * This file is part of Cachet.
| Web Routes *
|-------------------------------------------------------------------------- * (c) Alt Three Services Limited
| *
| This file is where you may define all of the routes that are handled * For the full copyright and license information, please view the LICENSE
| by your application. Just tell Laravel the URIs it should respond * file that was distributed with this source code.
| to using a Closure or controller method. Build something great!
|
*/ */
Route::get('/', function () { Route::get('/', function () {
return view('welcome'); return view('welcome');
}); });