Passed
Push — master ( 1719b8...ef9411 )
by Iman
02:43
created
src/migrations/2018_07_04_130611_create_user_roles_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         $tableNames['roles'] = 'roles';
19 19
         $tableNames['model_has_roles'] = 'model_has_roles';
20 20
 
21
-        Schema::create($tableNames['roles'], function (Blueprint $table) {
21
+        Schema::create($tableNames['roles'], function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('name');
24 24
             $table->string('guard_name');
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         });
27 27
 
28 28
 
29
-        Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames) {
29
+        Schema::create($tableNames['model_has_roles'], function(Blueprint $table) use ($tableNames) {
30 30
             $table->unsignedInteger('role_id');
31 31
             $table->morphs('model');
32 32
 
Please login to merge, or discard this patch.
src/Hooks/RouteHooks.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function whenYouVisitUrl(...$url)
14 14
     {
15
-        $removeSlash = function ($url) {
15
+        $removeSlash = function($url) {
16 16
             return ltrim($url, "/");
17 17
         };
18 18
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function whenYouCallAction(...$action)
38 38
     {
39
-        $addNamespace = function ($action) {
39
+        $addNamespace = function($action) {
40 40
             if ($action = ltrim($action, '\\')) {
41 41
                 return $action;
42 42
             }
Please login to merge, or discard this patch.