Completed
Pull Request — master (#1)
by Jorge
05:04
created
src/Drivers/AbstractDriver.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@  discard block
 block discarded – undo
43 43
      * Create a new driver instance.
44 44
      *
45 45
      * @param string $username
46
-     * @param string $clientSecret
47 46
      * @param string $sandbox
48 47
      */
49 48
     public function __construct($username, $password, $sandbox = true)
@@ -70,6 +69,9 @@  discard block
 block discarded – undo
70 69
 
71 70
     abstract protected function url($wsdl = null);
72 71
 
72
+    /**
73
+     * @param string $method
74
+     */
73 75
     public function request($url = null, $method = null, $params = [])
74 76
     {
75 77
         $url = $url ?? $this->url();
Please login to merge, or discard this patch.