Completed
Push — master ( 7ad252...378d82 )
by Arthur
05:06
created
src/Client.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,10 +82,10 @@
 block discarded – undo
82 82
     /**
83 83
      * Send request.
84 84
      *
85
-     * @param $curlHandle
85
+     * @param resource $curlHandle
86 86
      * @param Request $request
87 87
      *
88
-     * @return mixed Return the result on success, false on failure
88
+     * @return string Return the result on success, false on failure
89 89
      */
90 90
     private function send($curlHandle, Request $request)
91 91
     {
Please login to merge, or discard this patch.
src/Request.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
      */
45 45
     private $options = [];
46 46
 
47
+    /**
48
+     * @param boolean $isProductionEnv
49
+     */
47 50
     public function __construct(Notification $notification, $isProductionEnv)
48 51
     {
49 52
         $url = $isProductionEnv ? $this->getProductionUrl($notification) : $this->getSandboxUrl($notification);
Please login to merge, or discard this patch.