Completed
Pull Request — master (#64)
by
unknown
11:13
created
src/Response/AbstractResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     public function __construct(array $parameters)
74 74
     {
75 75
         // Cleanup array to set false for empty/invalid values.
76
-        $this->filteredParameters = array_map(function ($value) {
76
+        $this->filteredParameters = array_map(function($value) {
77 77
             if (in_array($value, ['', '???'], true)) {
78 78
                 return false;
79 79
             }
Please login to merge, or discard this patch.
src/Response/DirectPlusResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct($parameters);
35 35
 
36
-        if ( !isset($this->filteredParameters['REFABONNE']) ) {
36
+        if (!isset($this->filteredParameters['REFABONNE'])) {
37 37
             throw new \RuntimeException("Undefined index REFABONNE", 1);
38 38
         }
39 39
 
Please login to merge, or discard this patch.