Completed
Push — master ( 079139...59379f )
by Mikołaj
02:42
created
src/install/DataGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -88,6 +88,9 @@
 block discarded – undo
88 88
         return $sText;
89 89
     }
90 90
 
91
+    /**
92
+     * @return string
93
+     */
91 94
     public function clearDiacritics($sText)
92 95
     {
93 96
         $aReplacePL = array(
Please login to merge, or discard this patch.
src/module/Galleries/Roll/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * Returns total number of galleries items.
11 11
      *
12
-     * @param array|string $where
12
+     * @param string $where
13 13
      *
14 14
      * @return int
15 15
      */
Please login to merge, or discard this patch.
src/component/Hooks/Action.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -92,8 +92,6 @@
 block discarded – undo
92 92
      * @since 0.1
93 93
      *
94 94
      * @param string $tag     The name of the action to be executed.
95
-     * @param mixed  $arg,... Optional additional arguments which are passed on to the functions
96
-     *                        hooked to the action.
97 95
      */
98 96
     public static function dispatch($tag, $arg = '')
99 97
     {
Please login to merge, or discard this patch.
src/module/Pages/One/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @param array $path
13 13
      * @param array $pages
14 14
      *
15
-     * @return int|bool
15
+     * @return integer
16 16
      */
17 17
     public function getPageIdByPath(array $path, array $pages)
18 18
     {
Please login to merge, or discard this patch.
src/module/Pages/Roll/Admin/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns total number of pages items.
43 43
      *
44
-     * @param array|string $where
44
+     * @param string $where
45 45
      *
46 46
      * @return int
47 47
      */
Please login to merge, or discard this patch.
src/component/Auth/Session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * Session constructor.
36 36
      *
37 37
      * @param PDO $pdo
38
-     * @param $prefix
38
+     * @param string $prefix
39 39
      * @param array $config
40 40
      */
41 41
     public function __construct(PDO $pdo, $prefix, array $config)
Please login to merge, or discard this patch.
src/component/Feed/RSS2Item.php 1 patch
Doc Comments   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@  discard block
 block discarded – undo
130 130
         $this->guid = $guid;
131 131
     }
132 132
 
133
+    /**
134
+     * @param string $pubDate
135
+     */
133 136
     public function setPubDate($pubDate)
134 137
     {
135 138
         $this->pubDate = $pubDate;
@@ -143,7 +146,7 @@  discard block
 block discarded – undo
143 146
     /**
144 147
      * Get item title.
145 148
      *
146
-     * @return bool|string
149
+     * @return false|string
147 150
      */
148 151
     public function getTitle()
149 152
     {
@@ -157,7 +160,7 @@  discard block
 block discarded – undo
157 160
     /**
158 161
      * Get item link.
159 162
      *
160
-     * @return bool|string
163
+     * @return false|string
161 164
      */
162 165
     public function getLink()
163 166
     {
@@ -171,7 +174,7 @@  discard block
 block discarded – undo
171 174
     /**
172 175
      * Get item description.
173 176
      *
174
-     * @return bool|string
177
+     * @return false|string
175 178
      */
176 179
     public function getDescription()
177 180
     {
@@ -187,7 +190,7 @@  discard block
 block discarded – undo
187 190
     /**
188 191
      * Get item author.
189 192
      *
190
-     * @return bool|string
193
+     * @return false|string
191 194
      */
192 195
     public function getAuthor()
193 196
     {
@@ -201,7 +204,7 @@  discard block
 block discarded – undo
201 204
     /**
202 205
      * Get item category.
203 206
      *
204
-     * @return bool|string
207
+     * @return false|string
205 208
      */
206 209
     public function getCategory()
207 210
     {
@@ -215,7 +218,7 @@  discard block
 block discarded – undo
215 218
     /**
216 219
      * Get item pub date.
217 220
      *
218
-     * @return bool|string
221
+     * @return false|string
219 222
      */
220 223
     public function getPubDate()
221 224
     {
Please login to merge, or discard this patch.
src/component/Hooks/Filter.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,6 @@  discard block
 block discarded – undo
159 159
      *
160 160
      * @param string $tag     The name of the filter hook.
161 161
      * @param mixed  $value   The value on which the filters hooked to <tt>$tag</tt> are applied on.
162
-     * @param mixed  $var,... Additional variables passed to the functions hooked to <tt>$tag</tt>.
163 162
      *
164 163
      * @return mixed The filtered value after all hooked functions are applied to it.
165 164
      */
@@ -313,7 +312,7 @@  discard block
 block discarded – undo
313 312
      * @param int|bool $priority Used in counting how many hooks were applied. If === false and
314 313
      *                           $function is an object reference, we return the unique id only if it already has one, false otherwise.
315 314
      *
316
-     * @return string|bool Unique ID for usage as array key or false if $priority === false and
315
+     * @return string|false Unique ID for usage as array key or false if $priority === false and
317 316
      *                     $function is an object reference, and it does not already have a unique id.
318 317
      */
319 318
     private static function buildUniqueID($tag, $function, $priority)
Please login to merge, or discard this patch.
src/component/Html/Head.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param bool $return
38 38
      * @param int $nesting
39
-     * @return string|array|null
39
+     * @return null|string
40 40
      */
41 41
     public function make($return = false, $nesting = 1)
42 42
     {
Please login to merge, or discard this patch.