@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | $typeClass, |
| 49 | 49 | $inventory, |
| 50 | 50 | ['action' => $this->generateUrl('inventory_update', ['id' => $inventory->getId()]), |
| 51 | - 'method' => 'PUT',] |
|
| 51 | + 'method' => 'PUT', ] |
|
| 52 | 52 | ); |
| 53 | 53 | $deleteForm = $this->createDeleteForm($inventory->getId(), 'inventory_delete'); |
| 54 | 54 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | 'inventory' => $inventory, |
| 57 | 57 | 'zoneStorages' => $zoneStorages, |
| 58 | 58 | 'edit_form' => $editForm->createView(), |
| 59 | - 'delete_form' => $deleteForm->createView(),]; |
|
| 59 | + 'delete_form' => $deleteForm->createView(), ]; |
|
| 60 | 60 | return $return; |
| 61 | 61 | } |
| 62 | 62 | |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | return $this->createForm( |
| 73 | 73 | InventoryType::class, |
| 74 | 74 | $inventory, |
| 75 | - ['attr' => ['id' => 'create'], 'action' => $this->generateUrl($route), 'method' => 'PUT',] |
|
| 75 | + ['attr' => ['id' => 'create'], 'action' => $this->generateUrl($route), 'method' => 'PUT', ] |
|
| 76 | 76 | ); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | 'label' => 'gestock.id', |
| 45 | 45 | 'translation_domain' => 'messages', |
| 46 | 46 | 'empty_data' => null, |
| 47 | - 'attr'=> ['class' => 'form-control', 'readonly' => true,], |
|
| 47 | + 'attr'=> ['class' => 'form-control', 'readonly' => true, ], |
|
| 48 | 48 | ) |
| 49 | 49 | ) |
| 50 | 50 | ->add( |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | 'empty_data' => '0,000', |
| 81 | 81 | 'label' => 'seizure.realstock', |
| 82 | 82 | 'translation_domain' => 'gs_inventories', |
| 83 | - 'attr'=> ['class' => 'inventory form-control',] |
|
| 83 | + 'attr'=> ['class' => 'inventory form-control', ] |
|
| 84 | 84 | ) |
| 85 | 85 | ) |
| 86 | 86 | ->add( |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | parent::buildForm($builder, $options); |
| 38 | 38 | $builder |
| 39 | 39 | ->remove('articles') |
| 40 | - ->add('articles', CollectionType::class, ['entry_type' => InventoryArticlesZonesType::class,]); |
|
| 40 | + ->add('articles', CollectionType::class, ['entry_type' => InventoryArticlesZonesType::class, ]); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |