Completed
Push — master ( 97ada1...c0a66f )
by Fèvre
292:14 queued 288:08
created
src/Event/Statistics.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      *
32 32
      * @param \Cake\Event\Event $event The event that was fired.
33 33
      *
34
-     * @return array|false
34
+     * @return string|false
35 35
      */
36 36
     public function newArticleStats(Event $event)
37 37
     {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @param \Cake\Event\Event $event The event that was fired.
54 54
      *
55
-     * @return array|false
55
+     * @return string|false
56 56
      */
57 57
     public function newArticleCommentStats(Event $event)
58 58
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param \Cake\Event\Event $event The event that was fired.
75 75
      *
76
-     * @return array|false
76
+     * @return string|false
77 77
      */
78 78
     public function newArticleLikeStats(Event $event)
79 79
     {
Please login to merge, or discard this patch.
src/Console/Installer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@
 block discarded – undo
268 268
      *
269 269
      * @param string $dir The application's root directory.
270 270
      * @param \Composer\IO\IOInterface $io IO interface to write to console.
271
-     * @return void
271
+     * @return null|string
272 272
      */
273 273
     public static function setSecuritySaltAndKey($dir, $io)
274 274
     {
Please login to merge, or discard this patch.
src/Controller/Admin/ArticlesController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Add an article.
55 55
      *
56
-     * @return \Cake\Network\Response|void
56
+     * @return \Cake\Http\Response|null
57 57
      */
58 58
     public function add()
59 59
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Edit an Article.
87 87
      *
88
-     * @return \Cake\Network\Response|void
88
+     * @return \Cake\Http\Response|null
89 89
      */
90 90
     public function edit()
91 91
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     /**
132 132
      * Delete an Article and all his comments and likes.
133 133
      *
134
-     * @return \Cake\Network\Response
134
+     * @return \Cake\Http\Response|null
135 135
      */
136 136
     public function delete()
137 137
     {
Please login to merge, or discard this patch.
src/Controller/Admin/AttachmentsController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Add an attachment to an article.
47 47
      *
48
-     * @return \Cake\Network\Response|void
48
+     * @return \Cake\Http\Response|null
49 49
      */
50 50
     public function add()
51 51
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * Edit an attachment.
104 104
      *
105
-     * @return \Cake\Network\Response|void
105
+     * @return \Cake\Http\Response|null
106 106
      */
107 107
     public function edit()
108 108
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * Delete an Attachment.
176 176
      *
177
-     * @return \Cake\Network\Response
177
+     * @return \Cake\Http\Response|null
178 178
      */
179 179
     public function delete()
180 180
     {
Please login to merge, or discard this patch.
src/Controller/Admin/CategoriesController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Add a category.
35 35
      *
36
-     * @return \Cake\Network\Response|void
36
+     * @return \Cake\Http\Response|null
37 37
      */
38 38
     public function add()
39 39
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Edit a category.
60 60
      *
61
-     * @return \Cake\Network\Response|void
61
+     * @return \Cake\Http\Response|null
62 62
      */
63 63
     public function edit()
64 64
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * Delete a category and all his comments and likes.
98 98
      *
99
-     * @return \Cake\Network\Response
99
+     * @return \Cake\Http\Response|null
100 100
      */
101 101
     public function delete()
102 102
     {
Please login to merge, or discard this patch.
src/Controller/Admin/GroupsController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * Add a Group.
42 42
      *
43
-     * @return \Cake\Network\Response|void
43
+     * @return \Cake\Http\Response|null
44 44
      */
45 45
     public function add()
46 46
     {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Edit a Group.
71 71
      *
72
-     * @return \Cake\Network\Response|void
72
+     * @return \Cake\Http\Response|null
73 73
      */
74 74
     public function edit()
75 75
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Delete a group.
113 113
      *
114
-     * @return \Cake\Network\Response
114
+     * @return \Cake\Http\Response|null
115 115
      */
116 116
     public function delete()
117 117
     {
Please login to merge, or discard this patch.
src/Controller/Admin/SettingsController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * Create a setting.
42 42
      *
43
-     * @return \Cake\Network\Response|void
43
+     * @return \Cake\Http\Response|null
44 44
      */
45 45
     public function create()
46 46
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * Edit a setting.
65 65
      *
66
-     * @return \Cake\Network\Response|void
66
+     * @return \Cake\Http\Response|null
67 67
      */
68 68
     public function edit()
69 69
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * Delete a setting.
101 101
      *
102
-     * @return \Cake\Network\Response|void
102
+     * @return \Cake\Http\Response|null
103 103
      */
104 104
     public function delete()
105 105
     {
Please login to merge, or discard this patch.
src/Controller/Admin/UsersController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * Edit an user.
114 114
      *
115
-     * @return \Cake\Network\Response|void
115
+     * @return \Cake\Http\Response|null
116 116
      */
117 117
     public function edit()
118 118
     {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     /**
158 158
      * Delete an user and all his articles, comments and likes.
159 159
      *
160
-     * @return \Cake\Network\Response
160
+     * @return \Cake\Http\Response|null
161 161
      */
162 162
     public function delete()
163 163
     {
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     /**
192 192
      * Delete an avatar.
193 193
      *
194
-     * @return \Cake\Network\Response
194
+     * @return \Cake\Http\Response|null
195 195
      */
196 196
     public function deleteAvatar()
197 197
     {
Please login to merge, or discard this patch.
src/Controller/AttachmentsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      *
29 29
      * @throws \Cake\Network\Exception\NotFoundException When it missing an arguments or when the file doesn't exist.
30 30
      *
31
-     * @return \Cake\Network\Exception\NotFoundException
31
+     * @return \Cake\Http\Response
32 32
      *         \Cake\Network\Response
33 33
      */
34 34
     public function download()
Please login to merge, or discard this patch.