Test Failed
Push — master ( 9400f7...aee647 )
by Jairo
02:19
created
src/Entity/HttpFieldCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     private function checkKeyExists($key)
61 61
     {
62 62
         if (is_null($this->httpFields[$key])) {
63
-            throw new  HttpFieldNotFoundOnCollection('Field ' . $key . ' not found');
63
+            throw new  HttpFieldNotFoundOnCollection('Field '.$key.' not found');
64 64
         }
65 65
     }
66 66
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param array $httpFields
69 69
      * @return HttpFieldCollection
70 70
      */
71
-    public static function fromHttpFieldArray(array $httpFields){
71
+    public static function fromHttpFieldArray(array $httpFields) {
72 72
         return new self($httpFields);
73 73
     }
74 74
 }
75 75
\ No newline at end of file
Please login to merge, or discard this patch.
src/Entity/HttpField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      * @param string $value
71 71
      * @return HttpField
72 72
      */
73
-    public static function fromKeyAndValue(string $key, string $value){
73
+    public static function fromKeyAndValue(string $key, string $value) {
74 74
         return new self($key, $value);
75 75
     }
76 76
 }
77 77
\ No newline at end of file
Please login to merge, or discard this patch.