Completed
Pull Request — development (#11)
by
unknown
10:51
created
src/MatiHttpClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      * Get an access token from the OAuth service
47 47
      *
48 48
      * @param string $client_id
49
-     * @param string $client_user
49
+     * @param string $client_secret
50 50
      * @throws RequestException
51 51
      * @return Response
52 52
      */
Please login to merge, or discard this patch.
src/Support/Contracts/MatiClientInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@  discard block
 block discarded – undo
7 7
 
8 8
 interface MatiClientInterface
9 9
 {
10
+    /**
11
+     * @return void
12
+     */
10 13
     public function __construct(string $access_token = null);
11 14
 
12 15
     /**
@@ -21,7 +24,7 @@  discard block
 block discarded – undo
21 24
      * Get an access token from the OAuth service
22 25
      *
23 26
      * @param string $client_id
24
-     * @param string $client_user
27
+     * @param string $client_secret
25 28
      * @return Response
26 29
      */
27 30
     public function getAccessToken(string $client_id, string $client_secret): Response;
Please login to merge, or discard this patch.