@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | 'url_pattern', |
147 | 147 | 'name_pattern', |
148 | 148 | ]); |
149 | - $resolver->setNormalizer('url_pattern', function (Options $options, $value) { |
|
149 | + $resolver->setNormalizer('url_pattern', function(Options $options, $value) { |
|
150 | 150 | if (strstr($value, '{admin}') === false) { |
151 | 151 | throw new InvalidOptionsException('Admin routing configuration url pattern should contains {admin} placeholder'); |
152 | 152 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | return $value; |
158 | 158 | }); |
159 | - $resolver->setNormalizer('name_pattern', function (Options $options, $value) { |
|
159 | + $resolver->setNormalizer('name_pattern', function(Options $options, $value) { |
|
160 | 160 | if (strstr($value, '{admin}') === false) { |
161 | 161 | throw new InvalidOptionsException('Admin routing configuration pattern name should contains {admin} placeholder'); |
162 | 162 | } |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ->clear() |
175 | 175 | ->setDefault('enabled', true) |
176 | 176 | ->setDefault('pattern', 'lag.admin.{key}'); |
177 | - $resolver->setNormalizer('pattern', function (Options $options, $value) { |
|
177 | + $resolver->setNormalizer('pattern', function(Options $options, $value) { |
|
178 | 178 | if (strstr($value, 'key') === false) { |
179 | 179 | throw new InvalidOptionsException('Admin translation configuration pattern should contains {key} placeholder'); |
180 | 180 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | Admin::LOAD_STRATEGY_UNIQUE, |
158 | 158 | Admin::LOAD_STRATEGY_MULTIPLE, |
159 | 159 | ]) |
160 | - ->setNormalizer('route', function (Options $options, $value) use ($admin, $actionName) { |
|
160 | + ->setNormalizer('route', function(Options $options, $value) use ($admin, $actionName) { |
|
161 | 161 | if (!$value) { |
162 | 162 | // if no route was provided, it should be linked to an Admin |
163 | 163 | if (!$admin) { |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | } |
169 | 169 | return $value; |
170 | 170 | }) |
171 | - ->setNormalizer('title', function (Options $options, $value) use ($admin, $actionName) { |
|
171 | + ->setNormalizer('title', function(Options $options, $value) use ($admin, $actionName) { |
|
172 | 172 | if (!$value) { |
173 | 173 | $adminKey = ''; |
174 | 174 | // if an Admin is linked to this action, we use its name in translation key |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | } |
180 | 180 | return $value; |
181 | 181 | }) |
182 | - ->setNormalizer('batch', function (Options $options, $value) use ($admin, $actionName) { |
|
182 | + ->setNormalizer('batch', function(Options $options, $value) use ($admin, $actionName) { |
|
183 | 183 | if ($value) { |
184 | 184 | if (!is_array($value)) { |
185 | 185 | $value = [$value]; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | // foreach tagged, with add this field type to the field factory |
26 | 26 | foreach ($taggedServices as $id => $tags) { |
27 | 27 | if (empty($tags[0]['type'])) { |
28 | - throw new InvalidConfigurationException('You should defined a "type" attribute for field tag for service '.$id); |
|
28 | + throw new InvalidConfigurationException('You should defined a "type" attribute for field tag for service ' . $id); |
|
29 | 29 | } |
30 | 30 | // add allowed field type to the field factory |
31 | 31 | $definition->addMethodCall('addFieldMapping', [ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $configuration = new Configuration(); |
23 | 23 | $config = $this->processConfiguration($configuration, $configs); |
24 | 24 | |
25 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
25 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
26 | 26 | $loader->load('services.yml'); |
27 | 27 | |
28 | 28 | $container->setParameter('bluebear.admins', $config['admins']); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | } |
35 | 35 | // check if they exists in entities displayed and if checkbox is checked |
36 | 36 | foreach ($batchItems as $name => $batchItem) { |
37 | - $batchId = (int)str_replace('batch_', '', $name); |
|
37 | + $batchId = (int) str_replace('batch_', '', $name); |
|
38 | 38 | |
39 | 39 | if (array_key_exists($batchId, $cleanData['labels']) && $batchItem === true) { |
40 | 40 | $cleanData['ids'][] = $batchId; |
@@ -32,7 +32,7 @@ |
||
32 | 32 | ] |
33 | 33 | ]) |
34 | 34 | ; |
35 | - $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
35 | + $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
36 | 36 | $data = $event->getData(); |
37 | 37 | $form = $event->getForm(); |
38 | 38 |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $path = str_replace('{action}', $action->getName(), $path); |
94 | 94 | // by default, generic controller |
95 | 95 | $defaults = [ |
96 | - '_controller' => $admin->getConfiguration()->getControllerName().':'.$action->getName(), |
|
96 | + '_controller' => $admin->getConfiguration()->getControllerName() . ':' . $action->getName(), |
|
97 | 97 | '_admin' => $admin->getName(), |
98 | 98 | '_action' => $action->getName(), |
99 | 99 | ]; |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | { |
136 | 136 | $array = explode('\\', $namespace); |
137 | 137 | $path = array_pop($array); |
138 | - $path = strtolower(substr($path, 0, 1)).substr($path, 1); |
|
138 | + $path = strtolower(substr($path, 0, 1)) . substr($path, 1); |
|
139 | 139 | |
140 | 140 | return $path; |
141 | 141 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | // test with no configuration |
82 | 82 | $adminFactory = $this->mockAdminFactory(); |
83 | 83 | // unknow admin not exists, it should throw an exception |
84 | - $this->assertExceptionRaised('Exception', function () use ($adminFactory) { |
|
84 | + $this->assertExceptionRaised('Exception', function() use ($adminFactory) { |
|
85 | 85 | $adminFactory->getAdmin('unknown_admin'); |
86 | 86 | }); |
87 | 87 | // test with configurations samples |
@@ -259,7 +259,7 @@ |
||
259 | 259 | $repository = $this->mockEntityRepository(); |
260 | 260 | $repository |
261 | 261 | ->method('getEntityPersister') |
262 | - ->willReturn( $this |
|
262 | + ->willReturn($this |
|
263 | 263 | ->getMockBuilder('Doctrine\ORM\Persisters\Entity\BasicEntityPersister') |
264 | 264 | ->disableOriginalConstructor() |
265 | 265 | ->getMock()); |