Completed
Branch master (0fecbe)
by Arthur
12:08
created
app/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-Route::group(['middleware' => 'web'], function () {
4
+Route::group(['middleware' => 'web'], function() {
5 5
 
6 6
     Route::get('/', function() {
7 7
         return Redirect::to('/pings');
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     Route::get(env('PING_URL_PREFIX') . '/{name}', 'HeartbeatController@beat')->name('ping_url');
35 35
     Route::post(env('PING_URL_PREFIX') . '/{name}', 'HeartbeatController@beat');
36 36
 
37
-    Route::group(['middleware' => 'auth'], function () {
37
+    Route::group(['middleware' => 'auth'], function() {
38 38
 
39 39
         Route::get('/site', 'Auth\AuthController@getUser');
40 40
 
Please login to merge, or discard this patch.
app/Ping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
      */
237 237
     private function trimArrayItems(array $tags)
238 238
     {
239
-        return array_map(function ($tag) {
239
+        return array_map(function($tag) {
240 240
             return trim($tag);
241 241
         }, $tags);
242 242
     }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function map(Router $router)
39 39
     {
40
-        $router->group(['namespace' => $this->namespace], function ($router) {
40
+        $router->group(['namespace' => $this->namespace], function($router) {
41 41
             require app_path('Http/routes.php');
42 42
         });
43 43
     }
Please login to merge, or discard this patch.