Passed
Push — master ( cd8e91...88725a )
by Robson
07:25
created
example/find_example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 }
49 49
 
50 50
 print "secure params";
51
-$params = http_build_query(["name" => "UpInside & Associated"]);
51
+$params = http_build_query([ "name" => "UpInside & Associated" ]);
52 52
 $company = (new Company())->find("name = :name", $params);
53 53
 var_dump($company, $company->fetch());
54 54
 
Please login to merge, or discard this patch.
example/Models/Address.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function __construct()
17 17
     {
18
-        parent::__construct("adresses", ["user_id"]);
18
+        parent::__construct("adresses", [ "user_id" ]);
19 19
     }
20 20
 
21 21
     public function user(): Address
Please login to merge, or discard this patch.