@@ -18,7 +18,7 @@ |
||
| 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 | { |
@@ -47,7 +47,7 @@ |
||
| 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 | '' |