Completed
Pull Request — master (#58)
by Laurent
03:38
created
src/AppBundle/Form/Type/SupplierType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
                 'entity',
163 163
                 array(
164 164
                     'class' => 'AppBundle:FamilyLog',
165
-                    'query_builder' => function (EntityRepository $er) {
165
+                    'query_builder' => function(EntityRepository $er) {
166 166
                         return $er->createQueryBuilder('f')
167 167
                             ->orderBy('f.path', 'ASC');
168 168
                     },
Please login to merge, or discard this patch.
src/AppBundle/Form/Type/FamilyLogType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
                 'entity',
47 47
                 array(
48 48
                     'class' => 'AppBundle:FamilyLog',
49
-                    'query_builder' => function (EntityRepository $er) {
49
+                    'query_builder' => function(EntityRepository $er) {
50 50
                         return $er->createQueryBuilder('f')
51 51
                             ->orderBy('f.path', 'ASC');
52 52
                     },
Please login to merge, or discard this patch.
src/AppBundle/Controller/Settings/Divers/TvaController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
         $return = $this->abstractUpdateAction($tva, $request, 'tva', 'AppBundle\Form\Type\TvaType');
122 122
 
123 123
         return $return;
124
-   }
124
+    }
125 125
 
126 126
     /**
127 127
      * Deletes a Tva entity.
Please login to merge, or discard this patch.
src/AppBundle/Controller/Settings/Divers/FamilyLogController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
         );
134 134
 
135 135
         return $return;
136
-   }
136
+    }
137 137
 
138 138
     /**
139 139
      * Deletes a FamilyLog entity.
Please login to merge, or discard this patch.