Completed
Push — master ( 30d221...a59aba )
by Michal
99:41 queued 81:57
created
vendor/cakephp/cakephp/src/Cache/Engine/MemcachedEngine.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      *
162 162
      * @param string $key Identifier for the data
163 163
      * @param int $offset How much to increment
164
-     * @return bool|int New incremented value, false otherwise
164
+     * @return integer New incremented value, false otherwise
165 165
      */
166 166
     public function increment($key, $offset = 1)
167 167
     {
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      *
176 176
      * @param string $key Identifier for the data
177 177
      * @param int $offset How much to subtract
178
-     * @return bool|int New decremented value, false otherwise
178
+     * @return integer New decremented value, false otherwise
179 179
      */
180 180
     public function decrement($key, $offset = 1)
181 181
     {
Please login to merge, or discard this patch.
vendor/cakephp/cakephp/src/Collection/ExtractTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      * @param Process         $process  The Process
106 106
      * @param callable|null   $callback A PHP callable
107 107
      *
108
-     * @return callable
108
+     * @return \Closure
109 109
      */
110 110
     public function wrapCallback(OutputInterface $output, Process $process, $callback = null)
111 111
     {
Please login to merge, or discard this patch.
vendor/cakephp/cakephp/src/Collection/Iterator/StoppableIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      * Creates the iterator that will generate child iterators from each of the
48 48
      * elements it was constructed with.
49 49
      *
50
-     * @param array|\Traversable $items The list of values to iterate
50
+     * @param \Cake\Collection\CollectionTrait $items The list of values to iterate
51 51
      * @param callable $unfolder A callable function that will receive the
52 52
      * current item and key. It must return an array or Traversable object
53 53
      * out of which the nested iterators will be yielded.
Please login to merge, or discard this patch.
vendor/cakephp/cakephp/src/Database/SqlDialectTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      * @param Process         $process  The Process
106 106
      * @param callable|null   $callback A PHP callable
107 107
      *
108
-     * @return callable
108
+     * @return \Closure
109 109
      */
110 110
     public function wrapCallback(OutputInterface $output, Process $process, $callback = null)
111 111
     {
Please login to merge, or discard this patch.
vendor/cakephp/cakephp/src/Datasource/RulesChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      * @param Process         $process  The Process
106 106
      * @param callable|null   $callback A PHP callable
107 107
      *
108
-     * @return callable
108
+     * @return \Closure
109 109
      */
110 110
     public function wrapCallback(OutputInterface $output, Process $process, $callback = null)
111 111
     {
Please login to merge, or discard this patch.
guzzle/tests/Guzzle/Tests/Http/Message/EntityEnclosingRequestTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Guzzle\Tests\Plugin\History;
4 4
 
5 5
 use Guzzle\Http\Client;
6
-use Guzzle\Http\Message\Request;
7 6
 use Guzzle\Http\Message\Response;
8 7
 use Guzzle\Plugin\History\HistoryPlugin;
9 8
 use Guzzle\Plugin\Mock\MockPlugin;
Please login to merge, or discard this patch.
vendor/jdorn/sql-formatter/lib/SqlFormatter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -326,6 +326,9 @@
 block discarded – undo
326 326
         $this->assertEquals(array(true), $this->exporter->toArray(true));
327 327
     }
328 328
 
329
+    /**
330
+     * @param string $string
331
+     */
329 332
     private function trimNewline($string)
330 333
     {
331 334
         return preg_replace('/[ ]*\n/', "\n", $string);
Please login to merge, or discard this patch.
vendor/nikic/php-parser/test/PhpParser/Builder/FunctionTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
 
11 11
 class MethodTest extends \PHPUnit_Framework_TestCase
12 12
 {
13
+    /**
14
+     * @param string $name
15
+     */
13 16
     public function createMethodBuilder($name) {
14 17
         return new Method($name);
15 18
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/test/PhpParser/NodeVisitor/NameResolverTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -326,6 +326,9 @@
 block discarded – undo
326 326
         $this->assertEquals(array(true), $this->exporter->toArray(true));
327 327
     }
328 328
 
329
+    /**
330
+     * @param string $string
331
+     */
329 332
     private function trimNewline($string)
330 333
     {
331 334
         return preg_replace('/[ ]*\n/', "\n", $string);
Please login to merge, or discard this patch.