Completed
Push — develop ( 46f422...438d90 )
by Andrea Marco
15:14 queued 05:21
created
src/AbstractApi.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @author    Andrea Marco Sartori
50 50
      * @param    string|null    $version
51
-     * @param    Cerbero\FluentApi\Clients\ClientInterface|null    $client
52
-     * @param    Cerbero\FluentApi\Inflectors\ResourceInflectorInterface|null    $inflector
51
+     * @param    null|ClientInterface    $client
52
+     * @param    null|ResourceInflectorInterface    $inflector
53 53
      * @return    void
54 54
      */
55 55
     public function __construct(
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * Retrieve the default inflector.
127 127
      *
128 128
      * @author    Andrea Marco Sartori
129
-     * @return    Cerbero\FluentApi\Inflectors\ResourceInflectorInterface
129
+     * @return    Psr4ResourceInflector
130 130
      */
131 131
     protected function defaultInflector()
132 132
     {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      * Set the resource inflector.
138 138
      *
139 139
      * @author    Andrea Marco Sartori
140
-     * @param    Cerbero\FluentApi\Inflectors\ResourceInflectorInterface    $inflector
140
+     * @param    ResourceInflectorInterface    $inflector
141 141
      * @return    $this
142 142
      */
143 143
     public function setInflector(ResourceInflectorInterface $inflector)
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      * Set the HTTP client.
210 210
      *
211 211
      * @author    Andrea Marco Sartori
212
-     * @param    Cerbero\FluentApi\Clients\ClientInterface    $client
212
+     * @param    ClientInterface    $client
213 213
      * @return    $this
214 214
      */
215 215
     public function setClient(ClientInterface $client)
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      * Retrieve the default HTTP client to use if none is provided.
235 235
      *
236 236
      * @author    Andrea Marco Sartori
237
-     * @return    Cerbero\FluentApi\Clients\ClientInterface
237
+     * @return    GuzzleAdapter
238 238
      */
239 239
     protected function defaultClient()
240 240
     {
Please login to merge, or discard this patch.
src/AbstractResource.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
     /**
45 45
      * Fill the given request with the resource details.
46 46
      *
47
-     * @param    Cerbero\FluentApi\Requests\Request    $request
48
-     * @return    Cerbero\FluentApi\Requests\Request
47
+     * @param    Request    $request
48
+     * @return    Request
49 49
      */
50 50
     public function fillRequest(Request $request)
51 51
     {
Please login to merge, or discard this patch.
src/Clients/GuzzleAdapter.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Set the dependencies.
26 26
      *
27 27
      * @author    Andrea Marco Sartori
28
-     * @param    GuzzleHttp\ClientInterface    $client
28
+     * @param    Guzzle    $client
29 29
      * @return    void
30 30
      */
31 31
     public function __construct(Guzzle $client)
Please login to merge, or discard this 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 Closure;
6 6
 use GuzzleHttp\ClientInterface as Guzzle;
7
-use Guzzle\Http\Client;
8 7
 
9 8
 /**
10 9
  * Adapter for the Guzzle HTTP client.
Please login to merge, or discard this patch.