Completed
Push — 0.3-dev ( 87cbea...2a2fd7 )
by Arnaud
08:39 queued 01:20
created
Tests/bootstrap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@  discard block
 block discarded – undo
4 4
 
5 5
 //use Symfony\Component\HttpFoundation\Request;
6 6
 
7
-if (!is_file($loaderFile = __DIR__.'/../vendor/autoload.php') && !is_file($loaderFile = __DIR__.'/../../../../../../vendor/autoload.php')) {
7
+if (!is_file($loaderFile = __DIR__ . '/../vendor/autoload.php') && !is_file($loaderFile = __DIR__ . '/../../../../../../vendor/autoload.php')) {
8 8
     throw new LogicException('Could not find autoload.php in vendor/. Did you run "composer install --dev"?');
9 9
 }
10 10
 
11 11
 /** @var \Composer\Autoload\ClassLoader $loader */
12 12
 $loader = require $loaderFile;
13
-$loader->add('', __DIR__.'/src/');
13
+$loader->add('', __DIR__ . '/src/');
14 14
 $loader->register();
15 15
 
16 16
 //require_once __DIR__ . '/src/Entity/TestEntity.php';
@@ -30,4 +30,4 @@  discard block
 block discarded – undo
30 30
 //$loader = require_once __DIR__.'/app/bootstrap.php.cache';
31 31
 
32 32
 //require_once __DIR__ . '/src/Test/TestBundle/TestTestBundle.php';
33
-require_once __DIR__.'/app/AppKernel.php';
33
+require_once __DIR__ . '/app/AppKernel.php';
Please login to merge, or discard this patch.
Controller/CRUDController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
         $hooks = [];
250 250
 
251 251
         foreach ($fields as $fieldName) {
252
-            $exporter->addHook(function ($fieldValue) {
252
+            $exporter->addHook(function($fieldValue) {
253 253
                 // if field is an array
254 254
                 if (is_array($fieldValue)) {
255 255
                     $value = recursiveImplode(', ', $fieldValue);
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
         $this->forward404Unless(
295 295
             $admin->isActionGranted($admin->getCurrentAction()->getName(), $roles),
296 296
             sprintf('User with roles %s not allowed for action "%s"',
297
-                implode(', ', array_map(function (Role $role) {
297
+                implode(', ', array_map(function(Role $role) {
298 298
                     return $role->getRole();
299 299
                 }, $roles)),
300 300
                 $admin->getCurrentAction()->getName()
Please login to merge, or discard this patch.
Field/Field/ArrayField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function render($value)
28 28
     {
29 29
         if (!is_array($value) && !($value instanceof Traversable)) {
30
-            throw new Exception('Value should be an array instead of '.gettype($value));
30
+            throw new Exception('Value should be an array instead of ' . gettype($value));
31 31
         }
32 32
         if ($value instanceof Collection) {
33 33
             $value = $value->toArray();
Please login to merge, or discard this patch.
Field/Field/StringField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      */
84 84
     public function setOptions(array $options)
85 85
     {
86
-        $this->length = (int)$options['length'];
86
+        $this->length = (int) $options['length'];
87 87
         $this->replace = $options['replace'];
88 88
         $this->translation = $options['translation'];
89 89
     }
Please login to merge, or discard this patch.
Tests/AdminBundle/Field/ArrayFieldTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function testRender()
12 12
     {
13
-        $arrayField = new ArrayField ();
13
+        $arrayField = new ArrayField();
14 14
         $arrayField->setOptions([
15 15
             'glue' => ', '
16 16
         ]);
Please login to merge, or discard this patch.