Completed
Pull Request — develop (#323)
by Mathias
15:36
created
module/Core/src/Core/Form/Hydrator/Strategy/TreeSelectStrategy.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Set the allow multiple selections flag.
99 99
      *
100
-     * @param Callable|bool $flagOrCallback When a Callable is passed, it must return bool.
100
+     * @param \Closure $flagOrCallback When a Callable is passed, it must return bool.
101 101
      *
102 102
      * @return self
103 103
      */
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     public function extract($value)
124 124
     {
125 125
         if (!$value instanceOf AbstractLeafs) {
126
-            throw new \InvalidArgumentException('$value must be an instance of ' . AbstractLeafs::class);
126
+            throw new \InvalidArgumentException('$value must be an instance of '.AbstractLeafs::class);
127 127
         }
128 128
         /* @var AbstractLeafs $value
129 129
          * @var NodeInterface $item */
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      */
176 176
     private function getItemValue(NodeInterface $item)
177 177
     {
178
-        $parts = [ $item->getValue() ];
178
+        $parts = [$item->getValue()];
179 179
 
180 180
         while ($item = $item->getParent()) {
181 181
             $parts[] = $item->getValue();
Please login to merge, or discard this patch.
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/config/module.config.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @license   MIT
13 13
  */
14 14
 
15
-$doctrineConfig = include __DIR__ . '/doctrine.config.php';
15
+$doctrineConfig = include __DIR__.'/doctrine.config.php';
16 16
 
17 17
 
18 18
 return array(
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     'doctrine' => $doctrineConfig,
21 21
 
22 22
     'options' => [
23
-        'Core/MailServiceOptions' => [ 'class' => '\Core\Options\MailServiceOptions' ],
23
+        'Core/MailServiceOptions' => ['class' => '\Core\Options\MailServiceOptions'],
24 24
         ],
25 25
     
26 26
     'Core' => array(
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
                      'name' => 'stream',
41 41
                     'priority' => 1000,
42 42
                     'options' => array(
43
-                         'stream' => __DIR__ .'/../../../log/yawik.log',
43
+                         'stream' => __DIR__.'/../../../log/yawik.log',
44 44
                     ),
45 45
                  ),
46 46
             ),
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                      'name' => 'stream',
52 52
                     'priority' => 1000,
53 53
                     'options' => array(
54
-                         'stream' => __DIR__ .'/../../../log/mails.log',
54
+                         'stream' => __DIR__.'/../../../log/mails.log',
55 55
                     ),
56 56
                  ),
57 57
             ),
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         'ErrorLogger' => array(
60 60
             'service' => 'Core/ErrorLogger',
61 61
             'config'  => array(
62
-                'stream' => __DIR__ . '/../../../log/error.log',
62
+                'stream' => __DIR__.'/../../../log/error.log',
63 63
                 'log_errors' => true,
64 64
                 'log_exceptions' => true,
65 65
             ),
@@ -221,17 +221,17 @@  discard block
 block discarded – undo
221 221
         'translation_file_patterns' => array(
222 222
             [
223 223
                 'type' => 'gettext',
224
-                'base_dir' => __DIR__ . '/../language',
224
+                'base_dir' => __DIR__.'/../language',
225 225
                 'pattern' => '%s.mo',
226 226
             ],
227 227
             [
228 228
                 'type'     => 'phparray',
229
-                'base_dir' => __DIR__ . '/../language',
229
+                'base_dir' => __DIR__.'/../language',
230 230
                 'pattern' => 'Zend_Validate.%s.php',
231 231
             ],
232 232
             [
233 233
                 'type'     => 'phparray',
234
-                'base_dir' => __DIR__ . '/../language',
234
+                'base_dir' => __DIR__.'/../language',
235 235
                 'pattern' => 'Zend_Captcha.%s.php',
236 236
             ]
237 237
         ),
@@ -300,32 +300,32 @@  discard block
 block discarded – undo
300 300
         'exception_template' => 'error/index',
301 301
         // Map template to files. Speeds up the lookup through the template stack.
302 302
         'template_map' => array(
303
-            'noscript-notice' => __DIR__ . '/../view/layout/_noscript-notice.phtml',
304
-            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
305
-            'error/404' => __DIR__ . '/../view/error/404.phtml',
306
-            'error/403' => __DIR__ . '/../view/error/403.phtml',
307
-            'error/index' => __DIR__ . '/../view/error/index.phtml',
308
-            'main-navigation' => __DIR__ . '/../view/partial/main-navigation.phtml',
309
-            'pagination-control' => __DIR__ . '/../view/partial/pagination-control.phtml',
310
-            'core/loading-popup' => __DIR__ . '/../view/partial/loading-popup.phtml',
311
-            'core/notifications' => __DIR__ . '/../view/partial/notifications.phtml',
312
-            'form/core/buttons' => __DIR__ . '/../view/form/buttons.phtml',
313
-            'core/social-buttons' => __DIR__ . '/../view/partial/social-buttons.phtml',
314
-            'form/core/privacy' => __DIR__ . '/../view/form/privacy.phtml',
315
-            'core/form/permissions-fieldset' => __DIR__ . '/../view/form/permissions-fieldset.phtml',
316
-            'core/form/permissions-collection' => __DIR__ . '/../view/form/permissions-collection.phtml',
317
-            'core/form/container-view' => __DIR__ . '/../view/form/container.view.phtml',
318
-            'core/form/tree-manage.view' => __DIR__ . '/../view/form/tree-manage.view.phtml',
319
-            'core/form/tree-manage.form' => __DIR__ . '/../view/form/tree-manage.form.phtml',
320
-            'core/form/tree-add-item' => __DIR__ . '/../view/form/tree-add-item.phtml',
321
-            'mail/header' =>  __DIR__ . '/../view/mail/header.phtml',
322
-            'mail/footer' =>  __DIR__ . '/../view/mail/footer.phtml',
323
-            'mail/footer.en' =>  __DIR__ . '/../view/mail/footer.en.phtml',
303
+            'noscript-notice' => __DIR__.'/../view/layout/_noscript-notice.phtml',
304
+            'layout/layout' => __DIR__.'/../view/layout/layout.phtml',
305
+            'error/404' => __DIR__.'/../view/error/404.phtml',
306
+            'error/403' => __DIR__.'/../view/error/403.phtml',
307
+            'error/index' => __DIR__.'/../view/error/index.phtml',
308
+            'main-navigation' => __DIR__.'/../view/partial/main-navigation.phtml',
309
+            'pagination-control' => __DIR__.'/../view/partial/pagination-control.phtml',
310
+            'core/loading-popup' => __DIR__.'/../view/partial/loading-popup.phtml',
311
+            'core/notifications' => __DIR__.'/../view/partial/notifications.phtml',
312
+            'form/core/buttons' => __DIR__.'/../view/form/buttons.phtml',
313
+            'core/social-buttons' => __DIR__.'/../view/partial/social-buttons.phtml',
314
+            'form/core/privacy' => __DIR__.'/../view/form/privacy.phtml',
315
+            'core/form/permissions-fieldset' => __DIR__.'/../view/form/permissions-fieldset.phtml',
316
+            'core/form/permissions-collection' => __DIR__.'/../view/form/permissions-collection.phtml',
317
+            'core/form/container-view' => __DIR__.'/../view/form/container.view.phtml',
318
+            'core/form/tree-manage.view' => __DIR__.'/../view/form/tree-manage.view.phtml',
319
+            'core/form/tree-manage.form' => __DIR__.'/../view/form/tree-manage.form.phtml',
320
+            'core/form/tree-add-item' => __DIR__.'/../view/form/tree-add-item.phtml',
321
+            'mail/header' =>  __DIR__.'/../view/mail/header.phtml',
322
+            'mail/footer' =>  __DIR__.'/../view/mail/footer.phtml',
323
+            'mail/footer.en' =>  __DIR__.'/../view/mail/footer.en.phtml',
324 324
             //'startpage' => __DIR__ . '/../view/layout/startpage.phtml',
325 325
         ),
326 326
         // Where to look for view templates not mapped above
327 327
         'template_path_stack' => array(
328
-            __DIR__ . '/../view',
328
+            __DIR__.'/../view',
329 329
         ),
330 330
     ),
331 331
     'view_helpers' => array(
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/Repository/RepositoryService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             $name = "\\$namespace\\Entity\\$entityName";
39 39
         }
40 40
         
41
-        $repository  = $this->dm->getRepository($name);
41
+        $repository = $this->dm->getRepository($name);
42 42
         return $repository;
43 43
     }
44 44
     
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/FormContainer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         }
65 65
 
66 66
         if (isset($parameter['render_label']) && $parameter['render_label'] && ($label = $container->getLabel())) {
67
-            $content .= '<div class="container-headline"><h3>' . $this->getView()->translate($label) . '</h3></div>';
67
+            $content .= '<div class="container-headline"><h3>'.$this->getView()->translate($label).'</h3></div>';
68 68
         }
69 69
         foreach ($container as $element) {
70 70
             $content .= $this->renderElement($element, $layout, $parameter);
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
         } elseif ($element instanceof CoreSummaryForm) {
100 100
             $content .= $this->getView()->summaryForm($element);
101 101
         } elseif ($element instanceof Container) {
102
-            $content.= $this->render($element, $layout, $parameter);
102
+            $content .= $this->render($element, $layout, $parameter);
103 103
         } else {
104
-            $content.= $this->getView()->form($element, $layout, $parameter);
104
+            $content .= $this->getView()->form($element, $layout, $parameter);
105 105
         }
106 106
 
107 107
         return $content;
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.