Passed
Branch master (a18575)
by Thierry
02:38
created
src/Response/Features/JsCommands.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @param string        $sName              The command name
29 29
      * @param array         $aAttributes        Associative array of attributes that will describe the command
30
-     * @param mixed         $mData              The data to be associated with this command
30
+     * @param string         $mData              The data to be associated with this command
31 31
      * @param boolean       $bRemoveEmpty       If true, remove empty attributes
32 32
      *
33 33
      * @return Response
Please login to merge, or discard this patch.
src/Utils/DI/Container.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
     /**
311 311
      * Set an alias
312 312
      *
313
-     * @param string|ReflectionClass    $xClass         The class name or the reflection class
313
+     * @param ReflectionClass    $xClass         The class name or the reflection class
314 314
      *
315 315
      * @return null|object
316 316
      */
Please login to merge, or discard this patch.
src/Utils/Pagination/Renderer.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      * @param string    $sEnabledText   The text of the link if it is enabled
167 167
      * @param string    $sDisabledText  The text of the link if it is disabled
168 168
      *
169
-     * @return string
169
+     * @return null|\Jaxon\Utils\View\Store
170 170
      */
171 171
     protected function getLink($nNumber, $sTemplate, $sEnabledText, $sDisabledText)
172 172
     {
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * Render the previous link.
185 185
      *
186
-     * @return string
186
+     * @return null|\Jaxon\Utils\View\Store
187 187
      */
188 188
     protected function getPrevLink()
189 189
     {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     /**
195 195
      * Render the next link.
196 196
      *
197
-     * @return string
197
+     * @return null|\Jaxon\Utils\View\Store
198 198
      */
199 199
     protected function getNextLink()
200 200
     {
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      *
208 208
      * @param integer        $nNumber         The page number
209 209
      *
210
-     * @return string
210
+     * @return null|\Jaxon\Utils\View\Store
211 211
      */
212 212
     protected function getPageLink($nNumber)
213 213
     {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      *
280 280
      * @param integer   $totalPages         The total number of pages
281 281
      *
282
-     * @return string
282
+     * @return null|\Jaxon\Utils\View\Store
283 283
      */
284 284
     public function render($totalPages)
285 285
     {
Please login to merge, or discard this patch.