Completed
Push — master ( a284f8...7a851f )
by Mikołaj
03:34
created
src/component/Html/Paging.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
         return $this->info;
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $path
63
+     */
61 64
     public function setPath($path)
62 65
     {
63 66
         $this->path = $path;
@@ -81,6 +84,9 @@  discard block
 block discarded – undo
81 84
         return $this->classes;
82 85
     }
83 86
 
87
+    /**
88
+     * @param integer $nesting
89
+     */
84 90
     public function setNesting($nesting)
85 91
     {
86 92
         $this->nesting = $nesting;
Please login to merge, or discard this patch.
src/framework/View/AdminView.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     /**
90 90
      * @param int $nesting
91 91
      * @param array $classes
92
-     * @return bool|string
92
+     * @return false|string
93 93
      */
94 94
     public function breadcrumb($nesting = 0, $classes = [])
95 95
     {
Please login to merge, or discard this patch.
src/module/Albums/One/Album.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
      *
244 244
      * @param string $type
245 245
      *
246
-     * @return int
246
+     * @return string
247 247
      */
248 248
     public function modifierFullName($type = '')
249 249
     {
Please login to merge, or discard this patch.
src/module/Articles/One/Admin/EditModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      *
12 12
      * @param array $f
13 13
      *
14
-     * @return int
14
+     * @return boolean
15 15
      */
16 16
     public function update($f)
17 17
     {
Please login to merge, or discard this patch.
src/module/Articles/One/Article.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * Returns article content.
142 142
      *
143
-     * @param bool|int $truncate
143
+     * @param boolean $truncate
144 144
      * @param bool     $stripTags
145 145
      * @param bool     $escape
146 146
      * @param bool     $raw
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
      *
315 315
      * @param string $type
316 316
      *
317
-     * @return int
317
+     * @return string
318 318
      */
319 319
     public function modifierFullName($type = '')
320 320
     {
Please login to merge, or discard this patch.
src/module/Galleries/One/Admin/AddForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @return int
24
+     * @return false|string
25 25
      */
26 26
     public function add()
27 27
     {
Please login to merge, or discard this patch.
src/module/Modules/Roll/Admin/Model.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@  discard block
 block discarded – undo
10 10
     /**
11 11
      * Returns total number of modules items.
12 12
      *
13
-     * @param array|string $where
14 13
      *
15 14
      * @return int
16 15
      */
@@ -22,6 +21,8 @@  discard block
 block discarded – undo
22 21
     /**
23 22
      * Returns array with modules list.
24 23
      *
24
+     * @param integer $limit
25
+     * @param integer $onPage
25 26
      * @return array
26 27
      */
27 28
     public function getList($limit, $onPage)
Please login to merge, or discard this patch.
src/module/Pages/One/Page.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
         );
38 38
     }
39 39
 
40
+    /**
41
+     * @return string
42
+     */
40 43
     public function url()
41 44
     {
42 45
         if (!isset($this->page['url'])) {
Please login to merge, or discard this patch.
src/module/Plugins/Roll/Admin/Model.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@  discard block
 block discarded – undo
10 10
     /**
11 11
      * Returns total number of modules items.
12 12
      *
13
-     * @param array|string $where
14 13
      *
15 14
      * @return int
16 15
      */
@@ -22,6 +21,8 @@  discard block
 block discarded – undo
22 21
     /**
23 22
      * Returns array with modules list.
24 23
      *
24
+     * @param integer $limit
25
+     * @param integer $onPage
25 26
      * @return array|bool
26 27
      */
27 28
     public function getList($limit, $onPage)
Please login to merge, or discard this patch.