@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $translator |
57 | 57 | ->expects($debug ? $this->never() : $this->exactly(3)) |
58 | 58 | ->method('trans') |
59 | - ->will($this->returnCallback(function ($key) { |
|
59 | + ->will($this->returnCallback(function($key) { |
|
60 | 60 | $values = array( |
61 | 61 | 'foo' => 'foo translation', |
62 | 62 | 'bar' => 'bar translation', |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $translator |
70 | 70 | ->expects($debug ? $this->never() : $this->exactly(3)) |
71 | 71 | ->method('transChoice') |
72 | - ->will($this->returnCallback(function ($key, $count) { |
|
72 | + ->will($this->returnCallback(function($key, $count) { |
|
73 | 73 | $values = array( |
74 | 74 | 'foo' => 'foo 0|foo 1|foo 2', |
75 | 75 | 'bar' => 'bar single|bar plural', |