@@ -29,10 +29,10 @@ |
||
29 | 29 | { |
30 | 30 | $resolver |
31 | 31 | ->setDefaults([ |
32 | - 'label' => function (Options $options) { |
|
32 | + 'label' => function(Options $options) { |
|
33 | 33 | return 'lug.'.$options['grid']->getDefinition()->getResource()->getName().'.batch.all'; |
34 | 34 | }, |
35 | - 'label_translation_arguments' => function (Options $options) { |
|
35 | + 'label_translation_arguments' => function(Options $options) { |
|
36 | 36 | return ['%count%' => count($options['grid']->getDataSource())]; |
37 | 37 | }, |
38 | 38 | ]) |
@@ -98,7 +98,7 @@ |
||
98 | 98 | ->method('setDefinition') |
99 | 99 | ->withConsecutive( |
100 | 100 | [$service.'.internal', $definition], |
101 | - [$service, $this->callback(function ($definition) use ($service, $types) { |
|
101 | + [$service, $this->callback(function($definition) use ($service, $types) { |
|
102 | 102 | $result = $definition instanceof Definition |
103 | 103 | && $definition->getClass() === LazyServiceRegistry::class |
104 | 104 | && count($definition->getArguments()) === 2 |
@@ -81,7 +81,7 @@ |
||
81 | 81 | ->method('addMethodCall') |
82 | 82 | ->with( |
83 | 83 | $this->identicalTo('offsetSet'), |
84 | - $this->callback(function (array $args) use ($service, $name) { |
|
84 | + $this->callback(function(array $args) use ($service, $name) { |
|
85 | 85 | return isset($args[0]) |
86 | 86 | && isset($args[1]) |
87 | 87 | && $args[0] === $name |