Completed
Push — master ( bff359...005b00 )
by John
01:53
created
examples/geophone/src/Models/GeoPhone.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $areaCode = substr($phoneNumber, 0, 3);
29 29
         $nextThree = substr($phoneNumber, 3, 3);
30 30
 
31
-        while (($data = fgetcsv($this->fileHandle)) !== FALSE) {
31
+        while (($data = fgetcsv($this->fileHandle)) !== false) {
32 32
             if($areaCode == $data[0] && $nextThree == $data[1]){
33 33
                 return new LookupResponse($data[2], $data[3]);
34 34
             }
Please login to merge, or discard this patch.
src/AccessControl/AllAccessListAccessControl.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param array $keys
17 17
      */
18
-    public function __construct(Array $keys){
18
+    public function __construct(array $keys){
19 19
         $this->keys = $keys;
20 20
     }
21 21
 
Please login to merge, or discard this patch.