Completed
Pull Request — master (#90)
by Arnaud
02:00
created
src/LAG/AdminBundle/Filter/Factory/FilterFormBuilder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function build(ActionConfiguration $configuration)
39 39
     {
40 40
         if (true !== $this->isFilterFormRequired($configuration)) {
41
-           return null;
41
+            return null;
42 42
         }
43 43
         // retrieve the filters from the Action configuration
44 44
         $filters = $configuration->getParameter('filters');
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Action/Responder/AbstractResponder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     protected function render($template, array $context = [])
42 42
     {
43
-        $content =  $this
43
+        $content = $this
44 44
             ->twig
45 45
             ->render($template, $context)
46 46
         ;
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Admin/Request/LoadParameterExtractor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
         
144 144
         if ($isPaginationRequired) {
145 145
             // retrieve the page parameter value
146
-            $this->page = (int)$request->get('page', 1);
146
+            $this->page = (int) $request->get('page', 1);
147 147
         }
148 148
         
149 149
         if (null !== $request->get('maxPerPage')) {
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Action/Configuration/ActionConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,7 +428,7 @@
 block discarded – undo
428 428
     
429 429
     private function getRouteDefaultNormalizer()
430 430
     {
431
-        return function (Options $options, $value) {
431
+        return function(Options $options, $value) {
432 432
             if (!is_array($value)) {
433 433
                 $value = [];
434 434
             }
Please login to merge, or discard this patch.
bin/sam.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     'copy' => [],
19 19
 ];
20 20
 $eventDispatcher = new EventDispatcher();
21
-$eventDispatcher->addListener(NotificationEvent::NAME, function (NotificationEvent $event) {
21
+$eventDispatcher->addListener(NotificationEvent::NAME, function(NotificationEvent $event) {
22 22
     echo $event->getMessage()."\n";
23 23
 });
24 24
 
Please login to merge, or discard this patch.
src/LAG/AdminBundle/Field/Configuration/ActionCollectionConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $resolver
58 58
             ->setRequired('actions')
59 59
             ->setAllowedTypes('actions', 'array')
60
-            ->setNormalizer('actions', function (Options $options, $actions) {
60
+            ->setNormalizer('actions', function(Options $options, $actions) {
61 61
     
62 62
                 $normalizedActions = [];
63 63
                 
Please login to merge, or discard this patch.