Completed
Push — master ( 5b5792...2b84bd )
by Schlaefer
03:33 queued 11s
created
src/Model/Table/SettingsTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
      * Fast version of Set::combine($results, '{n}.Setting.name',
119 119
      * '{n}.Setting.value');
120 120
      *
121
-     * @param array $results results
121
+     * @param Query $results results
122 122
      * @return array
123 123
      */
124 124
     protected function _compactKeyValue($results)
Please login to merge, or discard this patch.
src/Model/Table/UserIgnoresTable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      *
132 132
      * @param int $userId user-ID
133 133
      * @param int $blockedId user-ID
134
-     * @return mixed
134
+     * @return \Cake\Datasource\EntityInterface
135 135
      */
136 136
     protected function _get($userId, $blockedId)
137 137
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      * counts how many users ignore the user with ID $id
190 190
      *
191 191
      * @param int $id user-ID
192
-     * @return array
192
+     * @return integer
193 193
      */
194 194
     public function countIgnored($id)
195 195
     {
Please login to merge, or discard this patch.
src/Model/Table/UserOnlineTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
      * Removes user with uuid `$id` from UserOnline
122 122
      *
123 123
      * @param string $id id
124
-     * @return bool
124
+     * @return integer
125 125
      */
126 126
     public function setOffline($id)
127 127
     {
Please login to merge, or discard this patch.
src/Model/Table/UsersTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -368,7 +368,7 @@
 block discarded – undo
368 368
      * set last refresh
369 369
      *
370 370
      * @param int $userId user-ID
371
-     * @param null $lastRefresh last refresh
371
+     * @param integer $lastRefresh last refresh
372 372
      * @return void
373 373
      */
374 374
     public function setLastRefresh($userId, $lastRefresh = null)
Please login to merge, or discard this patch.
src/View/Helper/UserHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * Translates user types
80 80
      *
81 81
      * @param string $type type
82
-     * @return mixed
82
+     * @return string|null
83 83
      */
84 84
     public function type($type)
85 85
     {
Please login to merge, or discard this patch.
plugins/BbcodeParser/src/Lib/Preprocessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * Constructor
21 21
      *
22
-     * @param array $settings settings
22
+     * @param \Saito\Markup\MarkupSettings $settings settings
23 23
      */
24 24
     public function __construct($settings)
25 25
     {
Please login to merge, or discard this patch.
src/View/Helper/ParserHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     /**
87 87
      * get editor help
88 88
      *
89
-     * @return mixed
89
+     * @return string
90 90
      */
91 91
     public function editorHelp()
92 92
     {
Please login to merge, or discard this patch.
plugins/Admin/src/View/Helper/AdminHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      *
67 67
      * @param string $text text
68 68
      * @param null $type type
69
-     * @return mixed
69
+     * @return string|null
70 70
      */
71 71
     public function badge($text, $type = null)
72 72
     {
Please login to merge, or discard this patch.
plugins/Installer/src/Controller/InstallController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -226,6 +226,7 @@
 block discarded – undo
226 226
 
227 227
     /**
228 228
      * {@inheritdoc}
229
+     * @param string $msg
229 230
      */
230 231
     public function log($msg, $level = LogLevel::INFO, $context = ['saito.install'])
231 232
     {
Please login to merge, or discard this patch.