Completed
Push — master ( f62226...8b6b73 )
by Stéphane
10s
created
src/Collection.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,6 @@
 block discarded – undo
42 42
     /**
43 43
      * Build Collection
44 44
      * @param array         $data
45
-     * @param callable|null $key
46
-     * @param callable|null $value
47 45
      */
48 46
     public function __construct(array $data = [])
49 47
     {
Please login to merge, or discard this patch.
src/Configuration/HasCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * Define which command must be ran with the request
22
-     * @param mixed $command Command to be ran before actual request is performed
22
+     * @param string $command Command to be ran before actual request is performed
23 23
      * @return Configuration|mixed
24 24
      */
25 25
     public function commandsRequest($command = null)
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * Define which command must be ran after the request
32
-     * @param mixed $command Command to be ran after actual request is performed
32
+     * @param string $command Command to be ran after actual request is performed
33 33
      * @return Configuration|mixed
34 34
      */
35 35
     public function commandsPost($command = null)
Please login to merge, or discard this patch.
src/Handle/CurlHandle.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * Open the curl handle to be used
76
-     * @return Handle
76
+     * @return CurlHandle
77 77
      */
78 78
     public function open()
79 79
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * Close currently opened handle
88
-     * @return Handle
88
+     * @return CurlHandle
89 89
      */
90 90
     public function close()
91 91
     {
@@ -98,7 +98,6 @@  discard block
 block discarded – undo
98 98
 
99 99
     /**
100 100
      * Prepare the handle to be configured
101
-     * @param Configuration\Configuration $config
102 101
      */
103 102
     public function prepare(AbstractRequest $request)
104 103
     {
Please login to merge, or discard this patch.
src/Message/ResponseFactory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
     /**
23 23
      * Build a new reponse object from handle execution result
24 24
      * @param string $content Response content
25
-     * @param Handle $handle Handle used to perform request which generate response
26 25
      * @param Request\AbstractRequest $request
27 26
      * @return Response
28 27
      */
Please login to merge, or discard this patch.