Completed
Push — master ( af1340...8e28ab )
by Taosikai
13:41
created
src/Client.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -239,6 +239,10 @@
 block discarded – undo
239 239
         $this->doRequest('DELETE', $resource);
240 240
     }
241 241
 
242
+    /**
243
+     * @param string $method
244
+     * @param string $resource
245
+     */
242 246
     protected function doRequest($method, $resource, $options = [])
243 247
     {
244 248
         $request = new Request($method, $this->buildUrl($resource));
Please login to merge, or discard this patch.
src/Manager/Article/Article.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @return string
96
+     * @return \DateTime
97 97
      */
98 98
     public function getCreatedAt()
99 99
     {
Please login to merge, or discard this patch.
src/Manager/CarrierService/CarrierServiceManagerInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param int $id
32 32
      *
33
-     * @return CarrierService
33
+     * @return \Slince\Shopify\Common\Model\ModelInterface
34 34
      */
35 35
     public function find($id);
36 36
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param array $data
60 60
      *
61
-     * @return CarrierService
61
+     * @return \Slince\Shopify\Common\Model\ModelInterface
62 62
      */
63 63
     public function create(array $data);
64 64
 }
65 65
\ No newline at end of file
Please login to merge, or discard this patch.
src/Manager/Collect/CollectManagerInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param int $id
32 32
      *
33
-     * @return Collect
33
+     * @return \Slince\Shopify\Common\Model\ModelInterface
34 34
      */
35 35
     public function find($id);
36 36
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param array $data
59 59
      *
60
-     * @return Collect
60
+     * @return \Slince\Shopify\Common\Model\ModelInterface
61 61
      */
62 62
     public function create(array $data);
63 63
 }
64 64
\ No newline at end of file
Please login to merge, or discard this patch.
src/Manager/Theme/ThemeManagerInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param int $id
32 32
      *
33
-     * @return Theme
33
+     * @return \Slince\Shopify\Common\Model\ModelInterface
34 34
      */
35 35
     public function find($id);
36 36
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param array $data
69 69
      *
70
-     * @return Theme
70
+     * @return \Slince\Shopify\Common\Model\ModelInterface
71 71
      */
72 72
     public function create(array $data);
73 73
 }
74 74
\ No newline at end of file
Please login to merge, or discard this patch.