Completed
Pull Request — master (#13)
by Emanuele
03:13
created
Admin/FeatureAdmin.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,11 +57,11 @@
 block discarded – undo
57 57
         if (!$this->getSubject()->getParent()) {
58 58
             $formMapper
59 59
                 ->add('children', 'sonata_type_collection', array(
60
-                      'required' => false,
61
-                  ), array(
62
-                      'edit'     => 'inline',
63
-                      'inline'   => 'table',
64
-                  ))
60
+                        'required' => false,
61
+                    ), array(
62
+                        'edit'     => 'inline',
63
+                        'inline'   => 'table',
64
+                    ))
65 65
             ;
66 66
         }
67 67
     }
Please login to merge, or discard this patch.
Command/LoadFeatureCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         if (!$bundle) {
34 34
             new \InvalidArgumentException("Bundle `$bundle` does not exists");
35 35
         }
36
-        $found   = array();
36
+        $found = array();
37 37
         $dir = $bundle->getPath().'/Resources/views/';
38 38
         if (!is_dir($dir)) {
39 39
             throw \Exception("'Directory `$dir` does not exists.");
Please login to merge, or discard this patch.
Twig/Extension/FeatureExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function __construct(Feature $service)
19 19
     {
20
-        $this->service  = $service;
20
+        $this->service = $service;
21 21
     }
22 22
 
23 23
     /**
Please login to merge, or discard this patch.