Passed
Push — master ( 5319ee...e6b641 )
by Dani
02:13
created
src/Http/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
     /**
140 140
      * Returns the exception that was thrown.
141 141
      *
142
-     * @return \Postpay\Exceptions\ApiException|null
142
+     * @return \Postpay\Exceptions\PostpayException
143 143
      */
144 144
     public function getThrownException()
145 145
     {
Please login to merge, or discard this patch.
src/Http/Url.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
     /**
8 8
      * Appends params to the URL.
9 9
      *
10
-     * @param string $path   The URL path that will receive the params.
11 10
      * @param array  $params The params to append to the URL.
11
+     * @param string|null $url
12 12
      *
13 13
      * @return string
14 14
      */
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Check for a "/" prefix and prepend it if not exists.
25 25
      *
26
-     * @param string|null $string
27 26
      *
27
+     * @param string $path
28 28
      * @return string|null
29 29
      */
30 30
     public static function slashPrefix($path)
Please login to merge, or discard this patch.
src/HttpClients/ClientInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      * Sends a request to the server and returns the response.
11 11
      *
12 12
      * @param Request  $request Request to send.
13
-     * @param int|null $timeOut The timeout for the request.
13
+     * @param int|null $timeout The timeout for the request.
14 14
      *
15 15
      * @return \Postpay\Http\Response Response from the server.
16 16
      *
Please login to merge, or discard this patch.