Completed
Push — master ( 5e9049...bdc55d )
by Taosikai
13s queued 11s
created
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/Order/LineItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     }
192 192
 
193 193
     /**
194
-     * @return string
194
+     * @return double
195 195
      */
196 196
     public function getPrice()
197 197
     {
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
     }
292 292
 
293 293
     /**
294
-     * @return bool
294
+     * @return string
295 295
      */
296 296
     public function isTitle()
297 297
     {
Please login to merge, or discard this patch.
src/Manager/Shop/Shop.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -556,7 +556,7 @@
 block discarded – undo
556 556
     }
557 557
 
558 558
     /**
559
-     * @return string
559
+     * @return integer
560 560
      */
561 561
     public function getPrimaryLocationId()
562 562
     {
Please login to merge, or discard this patch.
src/Manager/Theme/Theme.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-     * @return string
134
+     * @return integer
135 135
      */
136 136
     public function getThemeStoreId()
137 137
     {
Please login to merge, or discard this patch.
src/Manager/Asset/AssetManager.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -89,6 +89,11 @@
 block discarded – undo
89 89
         ]);
90 90
     }
91 91
 
92
+    /**
93
+     * @param integer $themeId
94
+     *
95
+     * @return string
96
+     */
92 97
     protected function createPartialResourceUrlForList($themeId)
93 98
     {
94 99
         return "themes/{$themeId}/assets";
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -275,6 +275,10 @@
 block discarded – undo
275 275
         ]);
276 276
     }
277 277
 
278
+    /**
279
+     * @param string $method
280
+     * @param string $resource
281
+     */
278 282
     protected function doRequest($method, $resource, $options = [])
279 283
     {
280 284
         $request = new Request($method, $this->buildUrl($resource), [
Please login to merge, or discard this patch.
src/Manager/PriceRule/PriceRule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
     }
302 302
 
303 303
     /**
304
-     * @return boolean
304
+     * @return string
305 305
      */
306 306
     public function getOncePerCustomer()
307 307
     {
Please login to merge, or discard this patch.
src/Manager/Page/Page.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     }
165 165
 
166 166
     /**
167
-     * @return string
167
+     * @return \DateTime
168 168
      */
169 169
     public function getCreatedAt()
170 170
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @return string
187
+     * @return \DateTime
188 188
      */
189 189
     public function getUpdatedAt()
190 190
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @return int
227
+     * @return string
228 228
      */
229 229
     public function getTemplateSuffix()
230 230
     {
Please login to merge, or discard this patch.