Completed
Branch master (bb6fa5)
by Sean
04:19
created
src/Client.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,10 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
 
29
+    /**
30
+     * @param Label $data
31
+     * @param string $endpoint
32
+     */
29 33
     private function sendRequest($data, $endpoint){
30 34
         $method = 'POST';
31 35
         $headers = array(
Please login to merge, or discard this patch.
src/Models/Item.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      * @throws \Exception
64 64
      */
65 65
     public function origin_country($value){
66
-       if (in_array($value, $this->acceptedCountries)) {
66
+        if (in_array($value, $this->acceptedCountries)) {
67 67
             $this->origin_country = $value;
68 68
         } else {
69 69
             $error = "Country code invalid or not serviceable";
Please login to merge, or discard this patch.