Completed
Pull Request — develop (#235)
by ANTHONIUS
07:49
created
module/Jobs/src/Jobs/Form/AdminSearchFormElementsFieldset.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
     public function init()
26 26
     {
27 27
         $this->addTextElement(
28
-             'Search',
29
-             /*@translate*/ 'search for position or company'
28
+                'Search',
29
+                /*@translate*/ 'search for position or company'
30 30
         );
31 31
 
32 32
 
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormWizardContainer.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -89,23 +89,23 @@
 block discarded – undo
89 89
             $tabId = $containerId . '-' . strtolower($tabElement->getName());
90 90
             $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>';
91 91
             $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">'
92
-                          . $formContainer($tabElement, $layout, $parameter)
93
-                          . '</div>';
92
+                            . $formContainer($tabElement, $layout, $parameter)
93
+                            . '</div>';
94 94
         }
95 95
 
96 96
         $content .= '<div class="wizard-container" id="' . $containerId . '">'
97
-                  . '<ul>' . $tabsNav . '</ul>'
98
-                  . '<div class="tab-content">' . $tabsContent . '</div>'
99
-                  . '<ul class="pager wizard">'
100
-                  . '<li class="previous"><a href="javascript:;">&larr; ' . $translate('previous') . '</a></li>'
101
-                  . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' &rarr;</a></li>'
102
-                  . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">'
103
-                  . (false !== $containerParams['finish_label']
97
+                    . '<ul>' . $tabsNav . '</ul>'
98
+                    . '<div class="tab-content">' . $tabsContent . '</div>'
99
+                    . '<ul class="pager wizard">'
100
+                    . '<li class="previous"><a href="javascript:;">&larr; ' . $translate('previous') . '</a></li>'
101
+                    . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' &rarr;</a></li>'
102
+                    . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">'
103
+                    . (false !== $containerParams['finish_label']
104 104
                      ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">'
105
-                       . $translate($containerParams['finish_label']) . ' &bull;</a>'
105
+                        . $translate($containerParams['finish_label']) . ' &bull;</a>'
106 106
                      : ''
107 107
                     )
108
-                  . '</li></div>';
108
+                    . '</li></div>';
109 109
 
110 110
         $content .= $container->renderPost($this->getView());
111 111
         
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Form/HiringOrganizationSelectFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
             $organizations = $organizationReference->getHiringOrganizations()->toArray();
42 42
             $organization = $organizationReference->getOrganization();
43 43
             if (!$organization->isDraft()) {
44
-    			array_unshift($organizations, $organization);
44
+                array_unshift($organizations, $organization);
45 45
             }
46 46
             $select->setSelectableOrganizations($organizations, /* addEmptyOption */
47 47
                                                 false
Please login to merge, or discard this patch.
module/Core/src/Core/Mail/Message.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,10 +53,10 @@
 block discarded – undo
53 53
 
54 54
         if ($emailOrAddressOrList instanceOf UserInterface) {
55 55
             parent::updateAddressList(
56
-                         $addressList,
57
-                         $emailOrAddressOrList->getInfo()->getEmail(),
58
-                         $emailOrAddressOrList->getInfo()->getDisplayName(false),
59
-                         $callingMethod
56
+                            $addressList,
57
+                            $emailOrAddressOrList->getInfo()->getEmail(),
58
+                            $emailOrAddressOrList->getInfo()->getDisplayName(false),
59
+                            $callingMethod
60 60
             );
61 61
             return;
62 62
         }
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/Mail.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         } elseif (isset($this->config['templateHalf'])) {
169 169
             $template = $this->config['templateHalf'];
170 170
         } else {
171
-              throw new \InvalidArgumentException('Not template provided for Mail.');
171
+                throw new \InvalidArgumentException('Not template provided for Mail.');
172 172
         }
173 173
         return $template;
174 174
     }
@@ -181,19 +181,19 @@  discard block
 block discarded – undo
181 181
             $from = $this->config['from'];
182 182
         } else {
183 183
             $log->err('A from email address must be provided (Variable $from) in Template: ' . $template);
184
-              throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: ' . $template);
184
+                throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: ' . $template);
185 185
         }
186 186
         if (isset($this->config['fromName'])) {
187 187
             $fromName = $this->config['fromName'];
188 188
         } else {
189 189
             $log->err('A from name must be provided (Variable $fromName) in Template: ' . $template);
190
-              throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: ' . $template);
190
+                throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: ' . $template);
191 191
         }
192 192
         if (isset($this->config['subject'])) {
193 193
             $subject = $this->config['subject'];
194 194
         } else {
195 195
             $log->err('A subject must be provided (Variable $subject) in Template: ' . $template);
196
-              throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: ' . $template);
196
+                throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: ' . $template);
197 197
         }
198 198
         $this->setFrom($from, $fromName);
199 199
         $this->setSubject($subject);
Please login to merge, or discard this patch.
module/Core/src/Core/Listener/DefaultListener.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function postDispatch(MvcEvent $e)
58 58
     {
59
-       // $view = $this->serviceLocator->get('view');
59
+        // $view = $this->serviceLocator->get('view');
60 60
 
61 61
     }
62 62
     
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/UserPassword.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
         $form = new static();
57 57
         $form->forms = $forms;
58 58
         
59
-		return $form;
59
+        return $form;
60 60
     }
61 61
 }
Please login to merge, or discard this patch.
module/Applications/src/Applications/Repository/PaginationList.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,6 +128,6 @@
 block discarded – undo
128 128
         
129 129
         $pointer = $this->pointer + 1;
130 130
         
131
-		return isset($this->ids[$pointer]) ? $this->ids[$pointer] : null;
131
+        return isset($this->ids[$pointer]) ? $this->ids[$pointer] : null;
132 132
     }
133 133
 }
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/UserImageFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
55 55
     {
56 56
         /* @var $options \Applications\Options\ModuleOptions */
57 57
         $form->get($this->fileName)->setViewHelper('FormImageUpload')
58
-           ->setMaxSize($options->getContactImageMaxSize())
59
-           ->setAllowedTypes($options->getContactImageMimeType())
60
-           ->setForm($form);
58
+            ->setMaxSize($options->getContactImageMaxSize())
59
+            ->setAllowedTypes($options->getContactImageMimeType())
60
+            ->setForm($form);
61 61
     }
62 62
 }
Please login to merge, or discard this patch.