Passed
Pull Request — master (#57)
by
unknown
08:52
created
QuickPay/API/Request.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,7 @@  discard block
 block discarded – undo
67 67
      * Performs an API POST request
68 68
      *
69 69
      * @access public
70
+     * @param string $path
70 71
      * @return Response
71 72
      */
72 73
     public function post($path, $form = array())
@@ -195,7 +196,7 @@  discard block
 block discarded – undo
195 196
      * Kept public for testing purposes.
196 197
      *
197 198
      * @param array $query
198
-     * @return mixed|string
199
+     * @return string
199 200
      */
200 201
     public function httpBuildQuery($query)
201 202
     {
Please login to merge, or discard this patch.
QuickPay/QuickPay.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,15 +19,15 @@
 block discarded – undo
19 19
     protected $client;
20 20
 
21 21
     /**
22
-    * __construct function.
23
-    *
24
-    * Instantiates the main class.
25
-    * Creates a client which is passed to the request construct.
26
-    *
27
-    * @auth_string string Authentication string for QuickPay
28
-    *
29
-    * @access public
30
-    */
22
+     * __construct function.
23
+     *
24
+     * Instantiates the main class.
25
+     * Creates a client which is passed to the request construct.
26
+     *
27
+     * @auth_string string Authentication string for QuickPay
28
+     *
29
+     * @access public
30
+     */
31 31
     public function __construct($auth_string = '', $additional_headers = array())
32 32
     {
33 33
         $this->client = new Client($auth_string, $additional_headers);
Please login to merge, or discard this patch.