Passed
Push — main ( 87c1e5...f29b76 )
by William
01:42
created
example/example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
  */
144 144
 $dbSub = (new Query())->from('users as u')->where("2 = ?", [2])->limit(10);
145 145
 
146
-$data = (new Query())->fromSubQuery(function (Query $query) {
146
+$data = (new Query())->fromSubQuery(function(Query $query) {
147 147
     return $query->from("users")->selectRaw('id,first_name')->where("1 = ?", [1])->limit(10);
148 148
 }, 'sub')
149 149
     ->where('4 = ?', [4])
Please login to merge, or discard this patch.
example/teste.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
 
66 66
 $db = (new Create())->from("users")->create([
67
-    'email' => generateRandomString()."@teste.com",
67
+    'email' => generateRandomString() . "@teste.com",
68 68
     'last_name' => generateRandomString()
69 69
 ])->exec();
70 70
 
Please login to merge, or discard this patch.