Completed
Push — develop ( 81d0f4...17c567 )
by Jens
07:44
created
src/Model/Cart/MyCartDraft.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * @param string $currency
57 57
      * @param Context|callable $context
58
-     * @return CartDraft
58
+     * @return MyCartDraft
59 59
      */
60 60
     public static function ofCurrency($currency, $context = null)
61 61
     {
Please login to merge, or discard this patch.
src/Model/Customer/MyCustomerDraft.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * @param string $lastName
77 77
      * @param string $password
78 78
      * @param Context|callable $context
79
-     * @return CustomerDraft
79
+     * @return MyCustomerDraft
80 80
      */
81 81
     public static function ofEmailNameAndPassword($email, $firstName, $lastName, $password, $context = null)
82 82
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,6 @@
 block discarded – undo
8 8
 
9 9
 use Commercetools\Core\Model\Common\Context;
10 10
 use Commercetools\Core\Model\Common\JsonObject;
11
-use Commercetools\Core\Model\Common\DateTimeDecorator;
12
-use Commercetools\Core\Model\CustomerGroup\CustomerGroupReference;
13 11
 use Commercetools\Core\Model\Common\AddressCollection;
14 12
 use Commercetools\Core\Model\CustomField\CustomFieldObjectDraft;
15 13
 use Commercetools\Core\Model\Common\DateDecorator;
Please login to merge, or discard this patch.
src/Request/Carts/Command/CartSetLocaleAction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         $this->setAction('setLocale');
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $locale
50
+     */
48 51
     public function setLocale($locale)
49 52
     {
50 53
         $locale = \Locale::canonicalize($locale);
Please login to merge, or discard this patch.
src/Request/Customers/Command/CustomerSetLocaleAction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         $this->setAction('setLocale');
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $locale
50
+     */
48 51
     public function setLocale($locale)
49 52
     {
50 53
         $locale = \Locale::canonicalize($locale);
Please login to merge, or discard this patch.
src/Request/Orders/Command/OrderSetLocaleAction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         $this->setAction('setLocale');
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $locale
50
+     */
48 51
     public function setLocale($locale)
49 52
     {
50 53
         $locale = \Locale::canonicalize($locale);
Please login to merge, or discard this patch.