@@ -29,7 +29,7 @@ |
||
29 | 29 | public function setUp() |
30 | 30 | { |
31 | 31 | $this->dispatcher = $this->getMock(EventDispatcherInterface::class); |
32 | - $this->consoleOutput = $this->getMock(OutputInterface::class); |
|
32 | + $this->consoleOutput = $this->getMock(OutputInterface::class); |
|
33 | 33 | |
34 | 34 | $this->testedInstance = new ProvidingProgressBar( |
35 | 35 | $this->dispatcher, |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | ->method('populate') |
102 | 102 | ->will( |
103 | 103 | $this->returnCallback( |
104 | - function () use ($provider) { |
|
104 | + function() use ($provider) { |
|
105 | 105 | $provider->index( |
106 | 106 | 'my_id', |
107 | 107 | ['foo' => 'bar'] |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | ->method('populate') |
149 | 149 | ->will( |
150 | 150 | $this->returnCallback( |
151 | - function () use ($provider) { |
|
152 | - for($i = 0; $i < 150; $i++) { |
|
151 | + function() use ($provider) { |
|
152 | + for ($i = 0; $i < 150; $i++) { |
|
153 | 153 | $provider->index( |
154 | 154 | 'my_id', |
155 | 155 | ['foo' => 'bar'] |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | ->method('populate') |
211 | 211 | ->will( |
212 | 212 | $this->returnCallback( |
213 | - function () use ($provider, $method, $id, $content) { |
|
213 | + function() use ($provider, $method, $id, $content) { |
|
214 | 214 | $provider->{$method}($id, $content); |
215 | 215 | } |
216 | 216 | ) |