Completed
Pull Request — master (#1)
by Hannes
02:20
created
src/Rule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public function __construct()
41 41
     {
42
-        $this->onException(function (\Exception $exception) {
42
+        $this->onException(function(\Exception $exception) {
43 43
             throw new Exception(sprintf($this->exceptionMessage, $exception->getMessage()), 0, $exception);
44 44
         });
45 45
     }
Please login to merge, or discard this patch.
src/ArrayValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
         if (!$this->ignoreUnknown && $diff = array_diff_key($tainted, $this->validators)) {
84 84
             $this->fireException(
85
-                new Exception('Unknown input item(s): ' . implode(array_keys($diff), ', '))
85
+                new Exception('Unknown input item(s): '.implode(array_keys($diff), ', '))
86 86
             );
87 87
         }
88 88
 
Please login to merge, or discard this patch.