Completed
Push — sf2.7 ( 984f44...92aca1 )
by Laurent
11:07 queued 06:43
created
src/Glsr/GestockBundle/DependencyInjection/Configuration.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
  * and merges configuration from your app/config files.
22 22
  *
23 23
  * @category   DependencyInjection
24
-
25 24
  * @link http://symfony.com/doc/current/cookbook/bundles/extension.html
26 25
  * #cookbook-bundles-extension-config-class
27 26
  */
Please login to merge, or discard this patch.
src/Glsr/GestockBundle/Controller/GestockController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         if ($request->isXmlHttpRequest()) {
60 60
             $famLogId = $request->get('id');
61 61
             $subFamId = $request->get('id2');
62
-            if ($famLogId  !== '') {
62
+            if ($famLogId !== '') {
63 63
                 $subFamilyLogs = $etm
64 64
                     ->getRepository('GlsrGestockBundle:SubFamilyLog')
65 65
                     ->getFromFamilyLog($famLogId);
Please login to merge, or discard this patch.
src/Glsr/GestockBundle/Controller/Settings/CompanyController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             $company = new Company();
70 70
 
71 71
             $form = $this->createForm(new CompanyType(), $company);
72
-            $url =  $this->render(
72
+            $url = $this->render(
73 73
                 'GlsrGestockBundle:Gestock/Settings:add.html.twig',
74 74
                 array(
75 75
                     'form' => $form->createView(),
Please login to merge, or discard this patch.
src/Glsr/GestockBundle/Controller/Settings/Divers/UnitStorageController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
             $url = $this->redirect($this->generateUrl('glstock_divers'));
146 146
         } else {
147 147
             $message = 'glsr.gestock.settings.edit_no';
148
-            $url =$this->render(
148
+            $url = $this->render(
149 149
                 'GlsrGestockBundle:Gestock/Settings:edit.html.twig',
150 150
                 array(
151 151
                     'form' => $form->createView(),
Please login to merge, or discard this patch.
src/Glsr/GestockBundle/Entity/InventoryArticlesRepository.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
         $qb = $this->createQueryBuilder('ia');
36 36
 
37 37
         $qb
38
-          ->where('ia.inventory = :inventory')
39
-          ->setParameter('inventory', $inventory);
38
+            ->where('ia.inventory = :inventory')
39
+            ->setParameter('inventory', $inventory);
40 40
 
41 41
         return $qb
42 42
         ->getQuery()
Please login to merge, or discard this patch.
src/Glsr/GestockBundle/Form/Type/ArticleReassignType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,14 +41,14 @@
 block discarded – undo
41 41
     {
42 42
         $builder->addEventListener(
43 43
             FormEvents::PRE_SET_DATA,
44
-            function (FormEvent $event) {
44
+            function(FormEvent $event) {
45 45
                 $form = $event->getForm();
46 46
                 $articles = $event->getData();
47 47
 
48 48
                 $formOptions = array(
49 49
                     'class' => 'GlsrGestockBundle:Supplier',
50 50
                     'query_builder' =>
51
-                    function (EntityRepository $er) use ($articles) {
51
+                    function(EntityRepository $er) use ($articles) {
52 52
                         return $er->getSupplierForReassign($articles[0]);
53 53
                     },
54 54
                     'multiple' => false,
Please login to merge, or discard this patch.