Completed
Push — develop ( cc6530...59407f )
by Mathias
08:03
created
module/Core/src/Core/Form/View/Helper/Form.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
         
89 89
         $class = $form->getAttribute('class');
90 90
         $class = preg_replace('~\bform-[^ ]+\b~', '', $class);
91
-        $class .= ' ' . $layout;
91
+        $class .= ' '.$layout;
92 92
         
93 93
         $form->setAttribute('class', $class);
94 94
 
95 95
         $formId = $form->getAttribute('id') ?: $form->getName();
96 96
         $formId = preg_replace(
97 97
             array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'),
98
-            array('-'              , '-'    , ''       ),
98
+            array('-', '-', ''),
99 99
             $formId
100 100
         );
101 101
         $form->setAttribute(
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             if (!$elementId) {
121 121
                 $elementId = preg_replace(
122 122
                     array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'),
123
-                    array('-'             , '-',     ''),
123
+                    array('-', '-', ''),
124 124
                     $element->getName()
125 125
                 );
126 126
             }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             }
160 160
         }
161 161
         
162
-        return $this->openTag($form) . $formContent . $this->closeTag();
162
+        return $this->openTag($form).$formContent.$this->closeTag();
163 163
     }
164 164
     
165 165
     /**
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
                 );
188 188
                 
189 189
                 if ($desc = $form->getOption('description', '')) {
190
-                    $descriptionParams=$form->getOption('description_params');
190
+                    $descriptionParams = $form->getOption('description_params');
191 191
                     $translator = $this->getTranslator();
192 192
                     $textDomain = $this->getTranslatorTextDomain();
193 193
                     $desc = $translator->translate($desc, $textDomain);
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                     $desc
209 209
                 );
210 210
         } else {
211
-            $formContent = '<div class="form-content">' . $formContent . '</div>';
211
+            $formContent = '<div class="form-content">'.$formContent.'</div>';
212 212
         }
213 213
         
214 214
         $markup = '<div id="form-%s" class="form-container">'
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                 . '</div>';
218 218
         
219 219
         if ($label = $form->getLabel()) {
220
-            $label = '<div class="form-headline"><h3>' . $renderer->translate($label) . '</h3></div>';
220
+            $label = '<div class="form-headline"><h3>'.$renderer->translate($label).'</h3></div>';
221 221
         }
222 222
         
223 223
         return sprintf(
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,8 +71,8 @@
 block discarded – undo
71 71
         $basepath   = $renderer->plugin('basepath');
72 72
         
73 73
         $headscript->appendFile($basepath('/Core/js/core.spinnerbutton.js'))
74
-                   ->appendFile($basepath('/assets/select2/js/select2.min.js'))
75
-                   ->appendFile($basepath('/Core/js/core.forms.js'));
74
+                    ->appendFile($basepath('/assets/select2/js/select2.min.js'))
75
+                    ->appendFile($basepath('/Core/js/core.forms.js'));
76 76
 
77 77
         /* @noinspection PhpParamsInspection */
78 78
         $renderer->headLink()->appendStylesheet($basepath('/assets/select2/css/select2.css'));
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         if (!$elementId) {
70 70
             $elementId = preg_replace(
71 71
                 array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'),
72
-                array('-'              , '-'    , ''       ),
72
+                array('-', '-', ''),
73 73
                 $element->getName()
74 74
             );
75 75
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                 if (!$elementOrFieldsetId) {
105 105
                     $elementOrFieldsetId = preg_replace(
106 106
                         array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'),
107
-                        array('-'              , '-'    , ''       ),
107
+                        array('-', '-', ''),
108 108
                         $elementOrFieldset->getName()
109 109
                     );
110 110
 
Please login to merge, or discard this patch.
module/Auth/src/Acl/Listener/CheckPermissionsListenerFactory.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param  string             $requestedName
26 26
      * @param  null|array         $options
27 27
      *
28
-     * @return object
28
+     * @return CheckPermissionsListener
29 29
      * @throws ServiceNotFoundException if unable to resolve the service.
30 30
      * @throws ServiceNotCreatedException if an exception is raised when
31 31
      *     creating a service.
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * - Injects the AuthenticationService
49 49
      *
50
-     * @param ServiceLocatorInterface $helpers
51 50
      * @return \Auth\View\Helper\Auth
52 51
      * @see \Zend\ServiceManager\FactoryInterface::createService()
53 52
      */
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Listener/ExceptionStrategyFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
                 break;
49 49
         }
50 50
 
51
-        $config   = $container->get('Config');
51
+        $config = $container->get('Config');
52 52
 
53 53
         if (isset($config['view_manager'])) {
54 54
             if (isset($config['view_manager']['display_exceptions'])) {
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/AttachableEntityInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param AttachableEntityManager $attachableEntityManager
24 24
      * @throws \LogicException If attachable entity manager is already set
25
+     * @return AttachableEntityTrait
25 26
      */
26 27
     public function setAttachableEntityManager(AttachableEntityManager $attachableEntityManager);
27 28
 
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/AttachableEntityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * @see AttachableEntityInterface::createAttachedEntity()
80 80
      */
81
-    public function createAttachedEntity($entityClass, $values = [], $key=null)
81
+    public function createAttachedEntity($entityClass, $values = [], $key = null)
82 82
     {
83 83
         return $this->getAttachableEntityManager()->createAttachedEntity($entityClass, $values, $key);
84 84
     }
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/Snippet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
     private function fromEvent($name, $values)
91 91
     {
92
-        $event  = $this->events->getEvent($name, $this, $values);
92
+        $event = $this->events->getEvent($name, $this, $values);
93 93
         $results = $this->events->triggerEvent($event);
94 94
 
95 95
         $snippets = [];
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             $content = $item['content'];
139 139
 
140 140
             foreach ($values as $key => $val) {
141
-                $content = str_replace('%' . $key . '%', $val, $content);
141
+                $content = str_replace('%'.$key.'%', $val, $content);
142 142
             }
143 143
 
144 144
             return $content;
Please login to merge, or discard this patch.
module/Core/src/Core/Mail/TranslatorAwareMessage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * </pre>
103 103
      *
104 104
      * @param string $subject
105
-     * @param bool|mixed $translate
105
+     * @param string $translate
106 106
      *
107 107
      * @since 0.19
108 108
      * @since 0.29 Add sprintf support for translation
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/OptionsAbstractFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
      *
177 177
      * @param string $fullName
178 178
      *
179
-     * @return array|bool
179
+     * @return string
180 180
      */
181 181
     protected function getOptionsConfig($fullName)
182 182
     {
Please login to merge, or discard this patch.