Completed
Branch master (e1fccf)
by Hannes
04:26
created
src/Matcher/FirstOf.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Load matchers
20 20
      *
21
-     * @param Matcher $matchers Any number of Matcher objects
21
+     * @param Matcher[] $matchers Any number of Matcher objects
22 22
      */
23 23
     public function __construct(Matcher ...$matchers)
24 24
     {
Please login to merge, or discard this patch.
src/FileObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     {
48 48
         return array_reduce(
49 49
             $this->lines,
50
-            function ($carry, $line) use ($eol, $encoding) {
50
+            function($carry, $line) use ($eol, $encoding) {
51 51
                 return $carry . $line->convertTo($encoding) . $eol;
52 52
             },
53 53
             ''
Please login to merge, or discard this patch.