Completed
Pull Request — develop (#353)
by ANTHONIUS
06:14
created
module/Core/src/Core/Service/SnapshotGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         }
90 90
 
91 91
         if (!$target) {
92
-            $target = get_class($source) . 'Snapshot';
92
+            $target = get_class($source).'Snapshot';
93 93
             $target = new $target($source);
94 94
         }
95 95
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Entity/Status.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function __construct($status = self::CREATED)
54 54
     {
55
-        $constant = 'self::' . strtoupper(str_replace(' ', '_', $status));
55
+        $constant = 'self::'.strtoupper(str_replace(' ', '_', $status));
56 56
         if (!defined($constant)) {
57
-            throw new \DomainException('Unknown status: ' . $status);
57
+            throw new \DomainException('Unknown status: '.$status);
58 58
         }
59
-        $this->name=constant($constant);
60
-        $this->order=$this->getOrder();
59
+        $this->name = constant($constant);
60
+        $this->order = $this->getOrder();
61 61
     }
62 62
 
63 63
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function getName()
68 68
     {
69
-        return isset($this->name)?$this->name:'';
69
+        return isset($this->name) ? $this->name : '';
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/ClonePropertiesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
                     $collection->add(clone $item);
48 48
                 }
49 49
                 $value = $collection;
50
-            } elseif(null === $value) {
50
+            } elseif (null === $value) {
51 51
 
52 52
             } else {
53 53
                 $value = clone $value;
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/JobboardSearch.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function init()
46 46
     {
47
-        $this->setAttribute('id','jobs-list-filter');
47
+        $this->setAttribute('id', 'jobs-list-filter');
48 48
         $this->setOption('text_span', 5);
49 49
         parent::init();
50 50
         $this->setButtonElement('q');
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                 ),
84 84
                 'attributes' => [
85 85
                     'value'            => '10', // default distance
86
-                    'data-searchbox'   => -1,  // hide the search box
86
+                    'data-searchbox'   => -1, // hide the search box
87 87
                     'data-allowclear'  => 'false', // allow to clear a selected value
88 88
                     'data-placeholder' => /*@translate*/ 'Distance',
89 89
                     'data-width'       => '100%',
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Repository/Filter/PaginationQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@
 block discarded – undo
85 85
         if (isset($params['l'])) {
86 86
 
87 87
             $coords = $params['l']->getCoordinates()->getCoordinates();
88
-            $queryBuilder->field('locations.coordinates')->geoWithinCenter((float) $coords[0], (float) $coords[1], (float) $this->value['d']/100);
88
+            $queryBuilder->field('locations.coordinates')->geoWithinCenter((float) $coords[0], (float) $coords[1], (float) $this->value['d'] / 100);
89 89
         }
90 90
 
91
-        if (isset($params['channel']) && !empty($params['channel']) && $params['channel']!="default" ){
91
+        if (isset($params['channel']) && !empty($params['channel']) && $params['channel'] != "default") {
92 92
             $queryBuilder->field('portals')->equals($params['channel']);
93 93
         }
94 94
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/BaseFieldset.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
 
55 55
             $locationsStrategy = new \Zend\Hydrator\Strategy\ClosureStrategy(
56 56
                 /* extract */
57
-                function ($value) use ($geoLocationStrategy)
57
+                function($value) use ($geoLocationStrategy)
58 58
                 {
59 59
                     return $geoLocationStrategy->extract($value->first());
60 60
                 },
61 61
 
62 62
                 /* hydrate */
63
-                function ($value) use ($geoLocationStrategy)
63
+                function($value) use ($geoLocationStrategy)
64 64
                 {
65 65
                     return new ArrayCollection([$geoLocationStrategy->hydrate($value)]);
66 66
                 }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                             $loc = $this->object->getLocations()->first();
112 112
                             if (!$loc) { return ''; }
113 113
 
114
-                            $value = $loc->getPostalCode() . ' ' . $loc->getCity() . ', ' . $loc->getRegion();
114
+                            $value = $loc->getPostalCode().' '.$loc->getCity().', '.$loc->getRegion();
115 115
                             $value = trim($value, ' ,');
116 116
 
117 117
                             return $value;
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/AbstractLocation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
             if (!$value) { continue; }
86 86
 
87 87
             if ('coordinates' == $key) {
88
-                $class = '\\Geo\\Entity\\Geometry\\' . $value['type'];
88
+                $class = '\\Geo\\Entity\\Geometry\\'.$value['type'];
89 89
                 $value = new $class($value['coordinates']);
90 90
             }
91 91
 
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/SearchForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,11 +72,11 @@
 block discarded – undo
72 72
     public function get($form, $options = null, $params = null)
73 73
     {
74 74
         if (!is_object($form)) {
75
-            $form             = $this->formElementManager->get($form, $options);
75
+            $form = $this->formElementManager->get($form, $options);
76 76
         }
77 77
 
78 78
         /** @noinspection PhpUndefinedMethodInspection */
79
-        $params           = $params ?: $this->getController()->getRequest()->getQuery();
79
+        $params = $params ?: $this->getController()->getRequest()->getQuery();
80 80
 
81 81
         /* I tried using form methods (bind, isValid)...
82 82
          * but because the search form could be in an invalidated state
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);
@@ -284,11 +284,11 @@  discard block
 block discarded – undo
284 284
                             if (!is_array($optVal) || !array_key_exists($optionKey, $optVal['options'])) { continue; }
285 285
 
286 286
                             $optGroupLabel = isset($optVal['label']) ? $translator->translate($optVal['label']) : $optKey;
287
-                            $multiOptions[] = $optGroupLabel . ' | ' . $translator->translate($optVal['options'][$optionKey]);
287
+                            $multiOptions[] = $optGroupLabel.' | '.$translator->translate($optVal['options'][$optionKey]);
288 288
                         }
289 289
                     }
290 290
 
291
-                    $elementValue = '<ul><li>' . join('</li><li>' , $multiOptions) . '</li></ul>';
291
+                    $elementValue = '<ul><li>'.join('</li><li>', $multiOptions).'</li></ul>';
292 292
 
293 293
                 } else {
294 294
                     $elementValue = $translator->translate($options[$elementValue]);
@@ -303,10 +303,10 @@  discard block
 block discarded – undo
303 303
         $markup .= '<div class="row">';
304 304
         $col = 12;
305 305
         if ($label) {
306
-            $markup .= '<div class="col-md-3 yk-label"><label>' . $label . '</label></div>';
306
+            $markup .= '<div class="col-md-3 yk-label"><label>'.$label.'</label></div>';
307 307
             $col = 9;
308 308
         }
309
-        $markup .= '<div class="col-md-' . $col . '">' . $elementValue . '</div>'
309
+        $markup .= '<div class="col-md-'.$col.'">'.$elementValue.'</div>'
310 310
             . '</div>';
311 311
         return $markup;
312 312
     }
Please login to merge, or discard this patch.