@@ -44,7 +44,7 @@ |
||
| 44 | 44 | { |
| 45 | 45 | $this->validator->expects($this->exactly(2)) |
| 46 | 46 | ->method('validate') |
| 47 | - ->withConsecutive(['2015'], ['2017']); |
|
| 47 | + ->withConsecutive([ '2015' ], [ '2017' ]); |
|
| 48 | 48 | |
| 49 | 49 | $filter = new FromYearFilter($this->validator, '2015'); |
| 50 | 50 | |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | { |
| 46 | 46 | $this->validator->expects($this->exactly(2)) |
| 47 | 47 | ->method('validate') |
| 48 | - ->withConsecutive(['2015'], ['2017']); |
|
| 48 | + ->withConsecutive([ '2015' ], [ '2017' ]); |
|
| 49 | 49 | |
| 50 | 50 | $filter = new ToYearFilter($this->validator, '2015'); |
| 51 | 51 | |