Completed
Push — master ( 113db7...3cc6f9 )
by Joao
02:23
created
src/Traits/Creation.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,9 @@
 block discarded – undo
25 25
         // create a event to happen on saving
26 26
         static::saving(function($table)  {
27 27
 
28
-            if ($user = Sentinel::check())
29
-                $table->created_by = Sentinel::getUser()->id;
28
+            if ($user = Sentinel::check()) {
29
+                            $table->created_by = Sentinel::getUser()->id;
30
+            }
30 31
 
31 32
         });
32 33
 
Please login to merge, or discard this patch.
src/Traits/CaptchaTrait.php 1 patch
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,10 +15,11 @@
 block discarded – undo
15 15
         $recaptcha = new ReCaptcha($secret);
16 16
         $resp = $recaptcha->verify($response, $remoteip);
17 17
 
18
-        if ($resp->isSuccess())
19
-            return true;
20
-        else
21
-            return false;
18
+        if ($resp->isSuccess()) {
19
+                    return true;
20
+        } else {
21
+                    return false;
22
+        }
22 23
     }
23 24
 
24 25
 }
25 26
\ No newline at end of file
Please login to merge, or discard this patch.
src/Database/Blueprint.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,8 +106,9 @@
 block discarded – undo
106 106
         // If no name was specified for this index, we will create one using a basic
107 107
         // convention of the table name, followed by the columns, followed by an
108 108
         // index type, such as primary or index, which makes the index unique.
109
-        if (is_null($index))
110
-            $index = $this->createIndexName($type, $columns);
109
+        if (is_null($index)) {
110
+                    $index = $this->createIndexName($type, $columns);
111
+        }
111 112
         return $this->addCommand($type, compact('index', 'columns', 'length'));
112 113
     }
113 114
 
Please login to merge, or discard this patch.
src/Database/MySqlGrammar.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,8 +122,7 @@
 block discarded – undo
122 122
                 if ( isset($command->length) )
123 123
                 {
124 124
                     $column .= "({$command->length})";
125
-                }
126
-                elseif ( 'string' == $blueprintColumn->type && $blueprintColumn->length > 255 )
125
+                } elseif ( 'string' == $blueprintColumn->type && $blueprintColumn->length > 255 )
127 126
                 {
128 127
                     $column .= '(255)';
129 128
                 }
Please login to merge, or discard this patch.
src/Commands/SetupCommand.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -59,8 +59,9 @@  discard block
 block discarded – undo
59 59
             return (!(stripos($var, 'jlourenco.') === false) && $var != 'jlourenco.php');
60 60
         });
61 61
 
62
-        if ($fileExists)
63
-            unlink($mainFile);
62
+        if ($fileExists) {
63
+                    unlink($mainFile);
64
+        }
64 65
 
65 66
         touch($mainFile);
66 67
 
@@ -73,8 +74,9 @@  discard block
 block discarded – undo
73 74
 
74 75
             while ($line = fgets($in))
75 76
             {
76
-                if ((stripos($line, '<?php') === false) && (stripos($line, '];') === false) && (stripos($line, 'return [') === false))
77
-                    $content .= $line;
77
+                if ((stripos($line, '<?php') === false) && (stripos($line, '];') === false) && (stripos($line, 'return [') === false)) {
78
+                                    $content .= $line;
79
+                }
78 80
             }
79 81
 
80 82
             fclose($in);
@@ -85,8 +87,9 @@  discard block
 block discarded – undo
85 87
         $content .= "];\n";
86 88
 
87 89
         $bytesWritten = File::append($mainFile, $content);
88
-        if ($bytesWritten === false)
89
-            die("Couldn't write to config file.");
90
+        if ($bytesWritten === false) {
91
+                    die("Couldn't write to config file.");
92
+        }
90 93
 
91 94
         $this->info('Config files compiled');
92 95
     }
Please login to merge, or discard this patch.