Completed
Pull Request — master (#50)
by
unknown
32:35 queued 21:26
created
guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultRevalidationTest.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
  */
23 23
 class DefaultRevalidationTest extends \Guzzle\Tests\GuzzleTestCase
24 24
 {
25
+    /**
26
+     * @param string $time
27
+     */
25 28
     protected function getHttpDate($time)
26 29
     {
27 30
         return gmdate(ClientInterface::HTTP_DATE, strtotime($time));
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Cache\ArrayCache;
15 15
 use Guzzle\Plugin\Cache\DefaultCacheStorage;
16 16
 use Guzzle\Plugin\Mock\MockPlugin;
17
-use Guzzle\Tests\Http\Server;
18 17
 
19 18
 /**
20 19
  * @covers Guzzle\Plugin\Cache\DefaultRevalidation
Please login to merge, or discard this patch.
guzzle/tests/Guzzle/Tests/Plugin/ErrorResponse/ErrorResponsePluginTest.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\ErrorResponse;
4 4
 
5 5
 use Guzzle\Service\Client;
6
-use Guzzle\Http\Message\Response;
7 6
 use Guzzle\Plugin\ErrorResponse\ErrorResponsePlugin;
8 7
 use Guzzle\Service\Description\ServiceDescription;
9 8
 use Guzzle\Tests\Mock\ErrorResponseMock;
Please login to merge, or discard this patch.
guzzle/guzzle/tests/Guzzle/Tests/Plugin/History/HistoryPluginTest.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.
guzzle/guzzle/tests/Guzzle/Tests/Service/Command/ClosureCommandTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Guzzle\Http\Message\RequestFactory;
6 6
 use Guzzle\Service\Command\ClosureCommand;
7
-use Guzzle\Service\Client;
8 7
 
9 8
 /**
10 9
  * @covers Guzzle\Service\Command\ClosureCommand
Please login to merge, or discard this patch.
phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,6 @@
 block discarded – undo
271 271
      * Sets the text portion (short and long description combined) of the doc
272 272
      * block.
273 273
      *
274
-     * @param string $docblock The new text portion of the doc block.
275 274
      * 
276 275
      * @return $this This doc block.
277 276
      */
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Location.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * 
47
-     * @param type $lineNumber
47
+     * @param integer $lineNumber
48 48
      * @return $this
49 49
      */
50 50
     public function setLineNumber($lineNumber)
Please login to merge, or discard this patch.
reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Serializer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * Sets the string to indent comments with.
63 63
      * 
64
-     * @param string $indentationString The string to indent comments with.
64
+     * @param string $indentString The string to indent comments with.
65 65
      * 
66 66
      * @return $this This serializer object.
67 67
      */
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     /**
162 162
      * Generate a DocBlock comment.
163 163
      *
164
-     * @param DocBlock The DocBlock to serialize.
164
+     * @param DocBlock  DocBlock to serialize.
165 165
      * 
166 166
      * @return string The serialized doc block.
167 167
      */
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/DocBlock/Type/Collection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,6 @@
 block discarded – undo
56 56
      *
57 57
      * @param string[] $types    Array containing a list of types to add to this
58 58
      *     container.
59
-     * @param Context  $location The current invoking location.
60 59
      */
61 60
     public function __construct(
62 61
         array $types = array(),
Please login to merge, or discard this patch.
tests/phpDocumentor/Reflection/DocBlock/Tag/ExampleTagTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @param string $exContent
32 32
      * @param string $exStartingLine
33 33
      * @param string $exLineCount
34
-     * @param string $exFilepath
34
+     * @param string $exFilePath
35 35
      *
36 36
      * @covers \phpDocumentor\Reflection\DocBlock\Tag\ExampleTag
37 37
      * @dataProvider provideDataForConstuctor
Please login to merge, or discard this patch.