Completed
Push — develop ( 39c196...b11cac )
by Carsten
26:33
created
module/Applications/src/Applications/Mail/Forward.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,11 +118,11 @@
 block discarded – undo
118 118
     {
119 119
         $services = $this->getServiceLocator()->getServiceLocator();
120 120
 
121
-         /*
121
+            /*
122 122
           * "ViewHelperManager" defined by ZF2
123 123
           *  see http://framework.zend.com/manual/2.0/en/modules/zend.mvc.services.html#viewmanager
124 124
           */
125
-         $viewManager = $services->get('ViewHelperManager');
125
+            $viewManager = $services->get('ViewHelperManager');
126 126
 
127 127
         return $viewManager->get("partial")->__invoke('applications/mail/forward', array("application"=>$this->application));
128 128
     }
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/GroupFieldset.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
     public function init()
29 29
     {
30 30
         $this->setName('data')
31
-             ->setLabel('Group data')
32
-             ->setUseAsBaseFieldset(true)
33
-             ->setHydrator(new EntityHydrator());
31
+                ->setLabel('Group data')
32
+                ->setUseAsBaseFieldset(true)
33
+                ->setHydrator(new EntityHydrator());
34 34
         
35 35
         $this->add(
36 36
             array(
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 'required' => true,
70 70
                 'validators' => array(
71 71
                     array('name'    => 'Auth/Form/UniqueGroupName',
72
-                          'options' => array(
72
+                            'options' => array(
73 73
                             'allowName' => 'edit' == $this->getOption('mode')
74 74
                                           ? $this->getObject()->getName()
75 75
                                           : null
Please login to merge, or discard this patch.
module/Orders/src/Listener/CreateJobOrder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $this->priceFilter     = $priceFilter;
63 63
         $this->options         = $options;
64 64
         $this->providerOptions = $providerOptions;
65
-        $this->orderRepository      = $orderRepository;
65
+        $this->orderRepository = $orderRepository;
66 66
         $this->draftRepository = $draftRepository;
67 67
     }
68 68
 
Please login to merge, or discard this patch.
module/Orders/src/Form/InvoiceAddress.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
     {
54 54
         parent::setParam($key, $value);
55 55
 
56
-        $events  = $this->getEventManager();
57
-        $events->trigger(FormEvent::EVENT_SET_PARAM, $this, [ 'param_name' => $key, 'param_value' => $value ]);
56
+        $events = $this->getEventManager();
57
+        $events->trigger(FormEvent::EVENT_SET_PARAM, $this, ['param_name' => $key, 'param_value' => $value]);
58 58
 
59 59
         return $this;
60 60
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $valid = parent::isValid();
66 66
 
67 67
         $events = $this->getEventManager();
68
-        $events->trigger(FormEvent::EVENT_VALIDATE, $this, [ 'isValid' => $valid ]);
68
+        $events->trigger(FormEvent::EVENT_VALIDATE, $this, ['isValid' => $valid]);
69 69
 
70 70
         return $valid;
71 71
     }
Please login to merge, or discard this patch.
module/Orders/src/Form/Listener/DisableJobInvoiceAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         /* @var \Orders\Form\InvoiceAddress $invoiceAddress */
36 36
         $invoiceAddress = $event->getForm()->getForm('invoice.invoiceAddress');
37 37
         $invoiceAddress->setDisplayMode(SummaryFormInterface::DISPLAY_SUMMARY);
38
-        foreach($invoiceAddress->getBaseFieldset() as $element) {
38
+        foreach ($invoiceAddress->getBaseFieldset() as $element) {
39 39
             $element->setAttribute('disabled', true);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Applications/Factory/Listener/EventApplicationCreatedFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @param ServiceLocatorInterface $serviceLocator
29 29
      *
30
-     * @return mixed
30
+     * @return EventApplicationCreated
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
33 33
     {
Please login to merge, or discard this patch.
module/Applications/src/Applications/Form/ContactContainer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function init()
26 26
     {
27 27
         $this->setIsDisableCapable(false)
28
-             ->setIsDisableElementsCapable(false);
28
+                ->setIsDisableElementsCapable(false);
29 29
 
30 30
         $this->setForms(
31 31
             array(
Please login to merge, or discard this patch.
module/Auth/src/Auth/Repository/Filter/PaginationSearchUsers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
 
22 22
     protected $sortPropertiesMap = [
23
-        'name' => [ 'info.lastName', 'info.firstName', 'info.email' ],
23
+        'name' => ['info.lastName', 'info.firstName', 'info.email'],
24 24
     ];
25 25
 
26 26
     /**
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/AdminControllerEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $this->models = new PriorityList();
35 35
     }
36 36
 
37
-    public function addViewModel($name, $model, $priority=0)
37
+    public function addViewModel($name, $model, $priority = 0)
38 38
     {
39 39
         $this->models->insert($name, $model, $priority);
40 40
 
Please login to merge, or discard this patch.