Passed
Branch master (53d563)
by Blast
06:00
created
src/Admin/Traits/Base.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@
 block discarded – undo
67 67
 
68 68
         if ($this->isGranted('DELETE')) {
69 69
             $actions['delete'] = array(
70
-               'label' => 'action_delete',
71
-               'translation_domain' => 'SonataAdminBundle',
72
-               'ask_confirmation' => true,
73
-           );
70
+                'label' => 'action_delete',
71
+                'translation_domain' => 'SonataAdminBundle',
72
+                'ask_confirmation' => true,
73
+            );
74 74
         }
75 75
 
76 76
         return $this->handleBatchActions($actions);
Please login to merge, or discard this patch.
src/Admin/Traits/Mapper.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             ->get('logger')
66 66
             ->debug(sprintf(
67 67
                 '[BlastCoreBundle] Processing the configuration in this order: %s',
68
-                 implode(', ', $classes)
68
+                    implode(', ', $classes)
69 69
             ))
70 70
         ;
71 71
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -10 removed lines patch added patch discarded remove patch
@@ -71,11 +71,9 @@  discard block
 block discarded – undo
71 71
 
72 72
         $fcts = [
73 73
             'tabs' => $mapper instanceof ShowMapper ?
74
-                ['getter' => 'getShowTabs', 'setter' => 'setShowTabs'] :
75
-                ['getter' => 'getFormTabs', 'setter' => 'setFormTabs'],
74
+                ['getter' => 'getShowTabs', 'setter' => 'setShowTabs'] : ['getter' => 'getFormTabs', 'setter' => 'setFormTabs'],
76 75
             'groups' => $mapper instanceof ShowMapper ?
77
-                ['getter' => 'getShowGroups', 'setter' => 'setShowGroups'] :
78
-                ['getter' => 'getFormGroups', 'setter' => 'setFormGroups'],
76
+                ['getter' => 'getShowGroups', 'setter' => 'setShowGroups'] : ['getter' => 'getFormGroups', 'setter' => 'setFormGroups'],
79 77
         ];
80 78
 
81 79
         // Figure out if we have to display tabs on the Show view
@@ -260,11 +258,9 @@  discard block
 block discarded – undo
260 258
 
261 259
         $fcts = [
262 260
             'tabs' => $mapper instanceof ShowMapper ?
263
-            ['getter' => 'getShowTabs', 'setter' => 'setShowTabs'] :
264
-            ['getter' => 'getFormTabs', 'setter' => 'setFormTabs'],
261
+            ['getter' => 'getShowTabs', 'setter' => 'setShowTabs'] : ['getter' => 'getFormTabs', 'setter' => 'setFormTabs'],
265 262
             'groups' => $mapper instanceof ShowMapper ?
266
-            ['getter' => 'getShowGroups', 'setter' => 'setShowGroups'] :
267
-            ['getter' => 'getFormGroups', 'setter' => 'setFormGroups'],
263
+            ['getter' => 'getShowGroups', 'setter' => 'setShowGroups'] : ['getter' => 'getFormGroups', 'setter' => 'setFormGroups'],
268 264
         ];
269 265
 
270 266
         // if a grouped organization can be shapped
@@ -653,7 +649,7 @@  discard block
 block discarded – undo
653 649
                     if (!is_array($fields) && isset($blast[$class][ListMapper::class]['add']['_export_format'][$fields])) {
654 650
                         $blast[$class][ListMapper::class]['add']['_export_format'][$format] = // the global fields array
655 651
                                 $fields = // the local  fields array
656
-                                $blast[$class][ListMapper::class]['add']['_export_format'][$fields];  // the source fields array
652
+                                $blast[$class][ListMapper::class]['add']['_export_format'][$fields]; // the source fields array
657 653
                     }
658 654
 
659 655
                     // removes a specific format
@@ -823,7 +819,7 @@  discard block
 block discarded – undo
823 819
         $choicesFunction = call_user_func($className . '::' . $methodName, $this->getModelManager(), $entityClass);
824 820
 
825 821
         $options['choices'] = $choicesFunction;
826
-        $options['choice_loader'] = new CallbackChoiceLoader(function () use ($options) {
822
+        $options['choice_loader'] = new CallbackChoiceLoader(function() use ($options) {
827 823
             return $options['choices'];
828 824
         });
829 825
         unset($options['choicesCallback']);
Please login to merge, or discard this patch.
src/Controller/CoreController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
                 foreach ($pager->getResults() as $result) {
53 53
                     $results[] = array(
54 54
                         'label' => $admin->toString($result),
55
-                        'link' => $admin->generateObjectUrl('show', $result),  // Sonata uses "edit", we prefer "show"
55
+                        'link' => $admin->generateObjectUrl('show', $result), // Sonata uses "edit", we prefer "show"
56 56
                         'id' => $admin->id($result),
57 57
                     );
58 58
                 }
Please login to merge, or discard this patch.
src/Generator/AdminGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
         // Manage route pattern generation
68 68
         $routes = $parts;
69
-        array_walk($routes, function (&$item, $k) use (&$routes) {
69
+        array_walk($routes, function(&$item, $k) use (&$routes) {
70 70
             $item = preg_replace('/(admin)|(bundle)/', '', strtolower($item));
71 71
             if ($item == '') {
72 72
                 array_splice($routes, $k, 1);
Please login to merge, or discard this patch.