Completed
Push — 2.0 ( 45f860...1c5343 )
by Christopher
02:36
created
plugins/Field/src/Controller/ImageHandlerController.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
      * If any of these variables is not present an exception will be throw.
122 122
      *
123 123
      * @param string $name EAV attribute name
124
-     * @return \Cake\Network\Response
124
+     * @return \Cake\Http\Response
125 125
      * @throws \Cake\Network\Exception\NotFoundException When field instance
126 126
      *  is not found.
127 127
      */
Please login to merge, or discard this patch.
plugins/MediaManager/src/Controller/Admin/ExplorerController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * Returns the given plugin's file within webroot directory.
45 45
      *
46
-     * @return void
46
+     * @return \Cake\Http\Response|null
47 47
      */
48 48
     public function pluginFile()
49 49
     {
Please login to merge, or discard this patch.
plugins/System/src/Controller/Admin/ThemesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
      * Renders theme's "screenshot.png"
199 199
      *
200 200
      * @param string $themeName Theme's name
201
-     * @return \Cake\Network\Response
201
+     * @return \Cake\Http\Response
202 202
      */
203 203
     public function screenshot($themeName)
204 204
     {
Please login to merge, or discard this patch.
plugins/User/src/Controller/Admin/PermissionsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Exports all permissions as a JSON file.
99 99
      *
100
-     * @return \Cake\Network\Response Forces JSON download
100
+     * @return \Cake\Http\Response Forces JSON download
101 101
      */
102 102
     public function export()
103 103
     {
Please login to merge, or discard this patch.
plugins/User/src/Controller/GatewayController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
      * Renders the "unauthorized" screen, when an user attempts to access
235 235
      * to a restricted area.
236 236
      *
237
-     * @return \Cake\Network\Response|null
237
+     * @return \Cake\Http\Response|null
238 238
      */
239 239
     public function unauthorized()
240 240
     {
Please login to merge, or discard this patch.
plugins/Search/src/Engine/Generic/GenericEngine.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
      * Scopes the given query using the given operator token.
315 315
      *
316 316
      * @param \Cake\ORM\Query $query The query to scope
317
-     * @param \Search\Token $token Token describing an operator. e.g `-op_name:op_value`
317
+     * @param TokenInterface $token Token describing an operator. e.g `-op_name:op_value`
318 318
      * @return \Cake\ORM\Query Scoped query
319 319
      */
320 320
     protected function _scopeOperator(Query $query, TokenInterface $token)
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
      * Scopes the given query using the given words token.
327 327
      *
328 328
      * @param \Cake\ORM\Query $query The query to scope
329
-     * @param \Search\TokenInterface $token Token describing a words sequence. e.g `this is a phrase`
329
+     * @param TokenInterface $token Token describing a words sequence. e.g `this is a phrase`
330 330
      * @return \Cake\ORM\Query Scoped query
331 331
      */
332 332
     protected function _scopeWords(Query $query, TokenInterface $token)
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
      * Similar to "_scopeWords" but using MySQL's fulltext indexes.
360 360
      *
361 361
      * @param \Cake\ORM\Query $query The query to scope
362
-     * @param \Search\TokenInterface $token Token describing a words sequence. e.g `this is a phrase`
362
+     * @param TokenInterface $token Token describing a words sequence. e.g `this is a phrase`
363 363
      * @return \Cake\ORM\Query Scoped query
364 364
      */
365 365
     protected function _scopeWordsInFulltext(Query $query, TokenInterface $token)
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
     /**
390 390
      * Whether FullText index is available or not and should be used.
391 391
      *
392
-     * @return bool True if enabled and should be used, false otherwise
392
+     * @return null|boolean True if enabled and should be used, false otherwise
393 393
      */
394 394
     protected function _isFullTextEnabled()
395 395
     {
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -12,11 +12,7 @@
 block discarded – undo
12 12
 namespace Search\Engine\Generic;
13 13
 
14 14
 use Cake\Cache\Cache;
15
-use Cake\Core\InstanceConfigTrait;
16 15
 use Cake\Datasource\EntityInterface;
17
-use Cake\Error\FatalErrorException;
18
-use Cake\Event\Event;
19
-use Cake\Event\EventManager;
20 16
 use Cake\ORM\Query;
21 17
 use Cake\ORM\Table;
22 18
 use Cake\ORM\TableRegistry;
Please login to merge, or discard this patch.