Passed
Pull Request — master (#69)
by Cédric
09:40
created
src/PatchTestOperationFailedException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
         ?Throwable $previous = null
27 27
     )
28 28
     {
29
-        parent::__construct('Test operation ' . json_encode($operation, JSON_UNESCAPED_SLASHES)
30
-            . ' failed: ' . json_encode($actualValue), $code, $previous);
29
+        parent::__construct('Test operation '.json_encode($operation, JSON_UNESCAPED_SLASHES)
30
+            . ' failed: '.json_encode($actualValue), $code, $previous);
31 31
         $this->operation = $operation;
32 32
         $this->actualValue = $actualValue;
33 33
     }
Please login to merge, or discard this patch.
src/MissingFieldException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         ?Throwable $previous = null
26 26
     )
27 27
     {
28
-        parent::__construct('Missing "' . $missingField . '" in operation data', $code, $previous);
28
+        parent::__construct('Missing "'.$missingField.'" in operation data', $code, $previous);
29 29
         $this->missingField = $missingField;
30 30
         $this->operation = $operation;
31 31
     }
Please login to merge, or discard this patch.