Completed
Push — master ( a4c147...0e9e02 )
by Antoine
09:19
created
Category
Tests/Translation/TranslatorTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.