Completed
Push — develop ( f7afa8...39c196 )
by Carsten
11s
created
module/Core/src/Core/Form/Hydrator/TreeHydrator.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * @param  array  $data Form values
94 94
      * @param  Collection $object
95 95
      *
96
-     * @return object
96
+     * @return NodeInterface
97 97
      */
98 98
     public function hydrate(array $data, $object)
99 99
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $data = [];
54 54
         $this->flattenTree($object, $data);
55 55
 
56
-        return ['items' => $data ];
56
+        return ['items' => $data];
57 57
 
58 58
     }
59 59
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
         if ($tree->hasChildren()) {
81 81
             foreach ($tree->getChildren() as $i => $child) {
82
-                $this->flattenTree($child, $data, $curId . '-' . ($i + 1) );
82
+                $this->flattenTree($child, $data, $curId.'-'.($i + 1));
83 83
             }
84 84
         }
85 85
     }
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
          * unflatten tree
117 117
          */
118 118
         $items = $data['items'];
119
-        $tree = [ '__root__' => array_shift($items) ];
119
+        $tree = ['__root__' => array_shift($items)];
120 120
 
121 121
         foreach ($items as $item) {
122 122
             $parent = substr($item['current'], 0, strrpos($item['current'], '-'));
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/Form/Tree/SelectFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      *
143 143
      * @return array
144 144
      */
145
-    protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot=true)
145
+    protected function createValueOptions(NodeInterface $node, $allowSelectNodes = false, $isRoot = true)
146 146
     {
147 147
         $key    = $isRoot ? $node->getValue() : $this->getItemValue($node);
148 148
         $name   = $node->getName();
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     private function getItemValue(NodeInterface $item)
183 183
     {
184
-        $parts = [ $item->getValue() ];
184
+        $parts = [$item->getValue()];
185 185
 
186 186
         while ($item = $item->getParent()) {
187 187
             $parts[] = $item->getValue();
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/Tree/AbstractLeafs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
                 $parent = $nextParent;
72 72
             }
73 73
             $nameParts[] = $item->getName();
74
-            $items[]     = join(' / ' , $nameParts);
74
+            $items[]     = join(' / ', $nameParts);
75 75
 
76 76
         }
77 77
 
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/SummaryForm.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $renderer->headscript()->appendFile($renderer->basePath('Core/js/jquery.summary-form.js'));
68 68
         
69 69
         $label = $form->getLabel();
70
-        $labelContent = $label ? '<div class="sf-headline"><h3>' . $this->getView()->translate($label) . '</h3></div>' : '';
70
+        $labelContent = $label ? '<div class="sf-headline"><h3>'.$this->getView()->translate($label).'</h3></div>' : '';
71 71
         $formContent  = $this->renderForm($form, $layout, $parameter);
72 72
         $summaryContent = $this->renderSummary($form);
73 73
         
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
     public function renderForm(SummaryFormInterface $form, $layout = Form::LAYOUT_HORIZONTAL, $parameter = array())
132 132
     {
133 133
                                                     /* @var $form SummaryFormInterface|\Core\Form\SummaryForm */
134
-        $renderer     = $this->getView();           /* @var $renderer \Zend\View\Renderer\PhpRenderer */
135
-        $formHelper   = $renderer->plugin('form');  /* @var $formHelper \Core\Form\View\Helper\Form */
134
+        $renderer     = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */
135
+        $formHelper   = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */
136 136
         $fieldset     = $form->getBaseFieldset();
137 137
         $resetPartial = false;
138 138
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         $form->prepare();
167 167
         $baseFieldset = $form->getBaseFieldset();
168 168
         if (!isset($baseFieldset)) {
169
-            throw new \InvalidArgumentException('For the Form ' . get_class($form) . ' there is no Basefieldset');
169
+            throw new \InvalidArgumentException('For the Form '.get_class($form).' there is no Basefieldset');
170 170
         }
171 171
 
172 172
         $dataAttributesMarkup = '';
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
             }
180 180
         }
181 181
         
182
-        $markup = '<div class="panel panel-default" style="min-height: 100px;"' . $dataAttributesMarkup . '>
182
+        $markup = '<div class="panel panel-default" style="min-height: 100px;"'.$dataAttributesMarkup.'>
183 183
                     <div class="panel-body"><div class="sf-controls">%s</div>%s</div></div>';
184 184
 
185 185
         $view = $this->getView();
@@ -192,9 +192,9 @@  discard block
 block discarded – undo
192 192
         
193 193
         if (($controlButtons = $form->getOption('control_buttons')) !== null)
194 194
         {
195
-            $buttonMarkup .= PHP_EOL . implode(PHP_EOL, array_map(function (array $buttonSpec) use ($view) {
196
-                return '<button type="button" class="btn btn-default btn-xs' . (isset($buttonSpec['class']) ? ' ' . $buttonSpec['class'] : '') . '">'
197
-                    . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-' . $buttonSpec['icon'] . '"></span> ' : '')
195
+            $buttonMarkup .= PHP_EOL.implode(PHP_EOL, array_map(function(array $buttonSpec) use ($view) {
196
+                return '<button type="button" class="btn btn-default btn-xs'.(isset($buttonSpec['class']) ? ' '.$buttonSpec['class'] : '').'">'
197
+                    . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-'.$buttonSpec['icon'].'"></span> ' : '')
198 198
                     . $view->translate($buttonSpec['label'])
199 199
                     . '</button>';
200 200
             }, $controlButtons));
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
         }
235 235
 
236 236
         if ($element instanceof ViewPartialProviderInterface) {
237
-            $renderer    = $this->getView();                 /* @var $renderer \Zend\View\Renderer\PhpRenderer */
237
+            $renderer    = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */
238 238
             $origPartial = $element->getViewPartial();
239 239
             $partial     = "$origPartial.view";
240
-            $partialParams  = array(
240
+            $partialParams = array(
241 241
                 'element' => $element
242 242
             );
243 243
             if (!$renderer->resolver($partial)) {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
         
254 254
         if ($element instanceof FieldsetInterface) {
255 255
             if (!$element instanceof FormInterface && $label) {
256
-                $markup .= '<h4>' . $label . '</h4>';
256
+                $markup .= '<h4>'.$label.'</h4>';
257 257
             }
258 258
             foreach ($element as $el) {
259 259
                 $markup .= $this->renderSummaryElement($el);
@@ -282,11 +282,11 @@  discard block
 block discarded – undo
282 282
                         if (!is_array($optVal) || !array_key_exists($optionKey, $optVal['options'])) { continue; }
283 283
 
284 284
                         $optGroupLabel = isset($optVal['label']) ? $translator->translate($optVal['label']) : $optKey;
285
-                        $multiOptions[] = $optGroupLabel . ' / ' . $translator->translate($optVal['options'][$optionKey]);
285
+                        $multiOptions[] = $optGroupLabel.' / '.$translator->translate($optVal['options'][$optionKey]);
286 286
                     }
287 287
                 }
288 288
 
289
-                $elementValue = join(', ' , $multiOptions);
289
+                $elementValue = join(', ', $multiOptions);
290 290
 //                $numberOfmultiOptions = count($multiOptions);
291 291
 //                foreach ($multiOptions as $optGroupLabel => $vals) {
292 292
 //                    $elementValue[] = ($numberOfmultiOptions > 1 || $optGroupLabel !== $generalOptGroupName ? "<b>$optGroupLabel</b><br>" : '') . join(', ', $vals);
@@ -305,10 +305,10 @@  discard block
 block discarded – undo
305 305
         $markup .= '<div class="row">';
306 306
         $col = 12;
307 307
         if ($label) {
308
-            $markup .= '<div class="col-md-3 yk-label"><label>' . $label . '</label></div>';
308
+            $markup .= '<div class="col-md-3 yk-label"><label>'.$label.'</label></div>';
309 309
             $col = 9;
310 310
         }
311
-        $markup .= '<div class="col-md-' . $col . '">' . $elementValue . '</div>'
311
+        $markup .= '<div class="col-md-'.$col.'">'.$elementValue.'</div>'
312 312
             . '</div>';
313 313
         return $markup;
314 314
     }
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormWizardContainer.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -90,24 +90,24 @@
 block discarded – undo
90 90
             $tabId = $containerId . '-' . strtolower($tabElement->getName());
91 91
             $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>';
92 92
             $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">'
93
-                          . $formContainer($tabElement, $layout, $parameter)
94
-                          . '</div>';
93
+                            . $formContainer($tabElement, $layout, $parameter)
94
+                            . '</div>';
95 95
         }
96 96
 
97 97
         $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">'
98
-                  . '<ul>' . $tabsNav . '</ul>'
99
-                  . '<div class="tab-content">' . $tabsContent . '</div>';
98
+                    . '<ul>' . $tabsNav . '</ul>'
99
+                    . '<div class="tab-content">' . $tabsContent . '</div>';
100 100
         if ($containerParams['pager']) {
101 101
             $content .='<ul class="pager wizard">'
102
-                  . '<li class="previous"><a href="javascript:;">&larr; ' . $translate('previous') . '</a></li>'
103
-                  . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' &rarr;</a></li>'
104
-                  . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">'
105
-                  . (false !== $containerParams['finish_label']
102
+                    . '<li class="previous"><a href="javascript:;">&larr; ' . $translate('previous') . '</a></li>'
103
+                    . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' &rarr;</a></li>'
104
+                    . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">'
105
+                    . (false !== $containerParams['finish_label']
106 106
                      ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">'
107
-                       . $translate($containerParams['finish_label']) . ' &bull;</a>'
107
+                        . $translate($containerParams['finish_label']) . ' &bull;</a>'
108 108
                      : ''
109 109
                     )
110
-                  . '</li></ul>';
110
+                    . '</li></ul>';
111 111
         }
112 112
         $content .= '</div>';
113 113
 
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -83,28 +83,28 @@
 block discarded – undo
83 83
 
84 84
         $containerId = $container->getAttribute('id');
85 85
         if (!$containerId) {
86
-            $containerId = 'wizardcontainer-' . strtolower(str_replace('\\', '-', get_class($container)));
86
+            $containerId = 'wizardcontainer-'.strtolower(str_replace('\\', '-', get_class($container)));
87 87
         }
88 88
 
89 89
         foreach ($container as $tabElement) {
90
-            $tabId = $containerId . '-' . strtolower($tabElement->getName());
91
-            $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>';
92
-            $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">'
90
+            $tabId = $containerId.'-'.strtolower($tabElement->getName());
91
+            $tabsNav .= '<li><a data-toggle="tab" href="#'.$tabId.'">'.$translate($tabElement->getLabel()).'</a></li>';
92
+            $tabsContent .= '<div class="tab-pane" id="'.$tabId.'">'
93 93
                           . $formContainer($tabElement, $layout, $parameter)
94 94
                           . '</div>';
95 95
         }
96 96
 
97
-        $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">'
98
-                  . '<ul>' . $tabsNav . '</ul>'
99
-                  . '<div class="tab-content">' . $tabsContent . '</div>';
97
+        $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="'.$containerId.'">'
98
+                  . '<ul>'.$tabsNav.'</ul>'
99
+                  . '<div class="tab-content">'.$tabsContent.'</div>';
100 100
         if ($containerParams['pager']) {
101
-            $content .='<ul class="pager wizard">'
102
-                  . '<li class="previous"><a href="javascript:;">&larr; ' . $translate('previous') . '</a></li>'
103
-                  . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' &rarr;</a></li>'
104
-                  . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">'
101
+            $content .= '<ul class="pager wizard">'
102
+                  . '<li class="previous"><a href="javascript:;">&larr; '.$translate('previous').'</a></li>'
103
+                  . '<li class="next"><a href="javascript:;">'.$translate('Next').' &rarr;</a></li>'
104
+                  . '<li class="finish'.($containerParams['finish_enabled'] ? '' : ' disabled').'">'
105 105
                   . (false !== $containerParams['finish_label']
106
-                     ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">'
107
-                       . $translate($containerParams['finish_label']) . ' &bull;</a>'
106
+                     ? '<a class="pull-right" href="'.$containerParams['finish_href'].'">'
107
+                       . $translate($containerParams['finish_label']).' &bull;</a>'
108 108
                      : ''
109 109
                     )
110 110
                   . '</li></ul>';
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Tree/AddItemFieldset.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,13 +79,13 @@
 block discarded – undo
79 79
             'name' => [
80 80
                 'required' => true,
81 81
                 'filters' => [
82
-                    [ 'name' => 'StringTrim' ],
82
+                    ['name' => 'StringTrim'],
83 83
                 ],
84 84
             ],
85 85
             'value' => [
86 86
                 'required' => false,
87 87
                 'filters' => [
88
-                    [ 'name' => 'StringTrim' ],
88
+                    ['name' => 'StringTrim'],
89 89
                 ],
90 90
             ],
91 91
         ];
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Tree/ManagementForm.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
      *
36 36
      * @var array
37 37
      */
38
-    protected $scripts = [ '/js/html.sortable.min.js', 'Core/js/forms.tree-management.js' ];
38
+    protected $scripts = ['/js/html.sortable.min.js', 'Core/js/forms.tree-management.js'];
39 39
 
40 40
     /**
41 41
      * Attributes.
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Filter/ViewModelTemplateFilterJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             'lang/jobs/view',
68 68
             [],
69 69
             [
70
-                'query' => [ 'id' => $job->getId() ],
70
+                'query' => ['id' => $job->getId()],
71 71
                 'force_canonical' => true
72 72
             ]
73 73
         );
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Repository/DefaultCategoriesBuilderFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,14 +38,14 @@
 block discarded – undo
38 38
 
39 39
         $globalConfigPaths = [];
40 40
         foreach ($config['config_glob_paths'] as $path) {
41
-            $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)) . DIRECTORY_SEPARATOR;
41
+            $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)).DIRECTORY_SEPARATOR;
42 42
         }
43 43
 
44 44
         $moduleConfigPath = '.';
45 45
         foreach ($config['module_paths'] as $path) {
46
-            $path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
47
-            if (file_exists($path . 'Jobs')) {
48
-                $moduleConfigPath = $path . 'Jobs' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR;
46
+            $path = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR;
47
+            if (file_exists($path.'Jobs')) {
48
+                $moduleConfigPath = $path.'Jobs'.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR;
49 49
                 break;
50 50
             }
51 51
         }
Please login to merge, or discard this patch.