Completed
Pull Request — master (#59)
by Eric
34:47 queued 27:43
created
Tests/DependencyInjection/Compiler/ConfigureFactoryPassTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $factory
76 76
             ->expects($this->at(1))
77 77
             ->method('addArgument')
78
-            ->with($this->callback(function ($argument) {
78
+            ->with($this->callback(function($argument) {
79 79
                 return $argument instanceof Reference
80 80
                     && (string) $argument === 'lug.translation.context.locale';
81 81
             }))
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $factory
85 85
             ->expects($this->at(2))
86 86
             ->method('addArgument')
87
-            ->with($this->callback(function ($argument) use ($translationName) {
87
+            ->with($this->callback(function($argument) use ($translationName) {
88 88
                 return $argument instanceof Reference
89 89
                     && (string) $argument === 'lug.factory.'.$translationName;
90 90
             }))
Please login to merge, or discard this patch.