Completed
Branch master (db2c42)
by Radosław
02:01
created
Category
src/SearchResult/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     protected function fromArray(array $data)
21 21
     {
22
-        foreach($data as $key => $value) {
22
+        foreach ($data as $key => $value) {
23 23
             if (property_exists($this, $key)) {
24 24
                 $this->{$key} = $value;
25 25
             }
Please login to merge, or discard this patch.
examples/bing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 var_dump(($results[5])->toArray());
28 28
 
29 29
 //Traversable
30
-foreach($results as $result){
30
+foreach ($results as $result) {
31 31
     var_dump($result->toArray());
32 32
 }
33 33
 
Please login to merge, or discard this patch.