Completed
Push — master ( 30d221...a59aba )
by Michal
99:41 queued 81:57
created
vendor/cakephp/debug_kit/src/View/Helper/ToolbarHelper.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,7 @@
 block discarded – undo
13 13
  */
14 14
 namespace DebugKit\View\Helper;
15 15
 
16
-use Cake\Cache\Cache;
17
-use Cake\Datasource\ConnectionManager;
18
-use Cake\Event\Event;
19 16
 use Cake\View\Helper;
20
-use DebugKit\DebugKitDebugger;
21 17
 
22 18
 /**
23 19
  * Provides Base methods for content specific debug toolbar helpers.
Please login to merge, or discard this patch.
vendor/cakephp/migrations/src/ConfigurationTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
      * that was configured for the configuration.
105 105
      *
106 106
      * @param string $driver The driver name as configured for the CakePHP app.
107
-     * @return \Phinx\Config\Config
107
+     * @return string
108 108
      * @throws \InvalidArgumentexception when it was not possible to infer the information
109 109
      * out of the provided database configuration
110 110
      */
Please login to merge, or discard this patch.
cakephp/plugin-installer/tests/TestCase/Installer/PluginInstallerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Composer\Composer;
6 6
 use Composer\Config;
7 7
 use Composer\Package\Package;
8
-use Composer\Package\RootPackage;
9 8
 use Composer\Repository\RepositoryManager;
10 9
 
11 10
 class PluginInstallerTest extends \PHPUnit_Framework_TestCase
Please login to merge, or discard this patch.
vendor/composer/ClassLoader.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@
 block discarded – undo
341 341
         return $file;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $class
346
+     * @param string $ext
347
+     */
344 348
     private function findFileWithExtension($class, $ext)
345 349
     {
346 350
         // PSR-4 lookup
Please login to merge, or discard this patch.
vendor/guzzle/guzzle/phing/tasks/GuzzlePearPharPackageTask.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -215,6 +215,10 @@
 block discarded – undo
215 215
         }
216 216
     }
217 217
 
218
+    /**
219
+     * @param string $dir
220
+     * @param string $baseinstalldir
221
+     */
218 222
     public function buildSubPackage($dir, $baseinstalldir, $info)
219 223
     {
220 224
         $package = str_replace('/', '_', $baseinstalldir);
Please login to merge, or discard this patch.
vendor/guzzle/guzzle/phing/tasks/GuzzleSubSplitTask.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@
 block discarded – undo
94 94
         $this->base = $str;
95 95
     }
96 96
 
97
+    /**
98
+     * @return string
99
+     */
97 100
     public function getBase()
98 101
     {
99 102
         return $this->base;
Please login to merge, or discard this patch.
vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Trace the decorators associated with the batch
54 54
      *
55
-     * @return array
55
+     * @return AbstractBatchDecorator[]
56 56
      */
57 57
     public function getDecorators()
58 58
     {
Please login to merge, or discard this patch.
vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Automatically flush the batch when the size of the queue reaches a certain threshold. Adds {@see FlushingBatch}.
49 49
      *
50
-     * @param $threshold Number of items to allow in the queue before a flush
50
+     * @param integer $threshold Number of items to allow in the queue before a flush
51 51
      *
52 52
      * @return BatchBuilder
53 53
      */
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Notify a callable each time a batch flush completes. Enables the {@see NotifyingBatch} decorator.
88 88
      *
89
-     * @param mixed $callable Callable function to notify
89
+     * @param \Closure $callable Callable function to notify
90 90
      *
91 91
      * @return BatchBuilder
92 92
      * @throws InvalidArgumentException if the argument is not callable
Please login to merge, or discard this patch.
vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      *
27 27
      * @param array $config   Configuration values to apply.
28 28
      * @param array $defaults Default parameters
29
-     * @param array $required Required parameter names
29
+     * @param string[] $required Required parameter names
30 30
      *
31 31
      * @return self
32 32
      * @throws InvalidArgumentException if a parameter is missing
Please login to merge, or discard this patch.