Completed
Push — master ( 1ca43a...f99623 )
by Kamil
14:39 queued 11s
created
src/Sylius/Component/Core/Model/ChannelInterface.php 1 patch
Doc Comments   +51 added lines patch added patch discarded remove patch
@@ -25,43 +25,94 @@
 block discarded – undo
25 25
     CurrenciesAwareInterface,
26 26
     LocalesAwareInterface
27 27
 {
28
+    /**
29
+     * @return CurrencyInterface
30
+     */
28 31
     public function getBaseCurrency(): ?CurrencyInterface;
29 32
 
33
+    /**
34
+     * @return void
35
+     */
30 36
     public function setBaseCurrency(?CurrencyInterface $currency): void;
31 37
 
38
+    /**
39
+     * @return LocaleInterface
40
+     */
32 41
     public function getDefaultLocale(): ?LocaleInterface;
33 42
 
43
+    /**
44
+     * @return void
45
+     */
34 46
     public function setDefaultLocale(?LocaleInterface $locale): void;
35 47
 
48
+    /**
49
+     * @return ZoneInterface
50
+     */
36 51
     public function getDefaultTaxZone(): ?ZoneInterface;
37 52
 
53
+    /**
54
+     * @return void
55
+     */
38 56
     public function setDefaultTaxZone(?ZoneInterface $defaultTaxZone): void;
39 57
 
58
+    /**
59
+     * @return string
60
+     */
40 61
     public function getTaxCalculationStrategy(): ?string;
41 62
 
63
+    /**
64
+     * @return void
65
+     */
42 66
     public function setTaxCalculationStrategy(?string $taxCalculationStrategy): void;
43 67
 
68
+    /**
69
+     * @return string
70
+     */
44 71
     public function getThemeName(): ?string;
45 72
 
73
+    /**
74
+     * @return void
75
+     */
46 76
     public function setThemeName(?string $themeName): void;
47 77
 
78
+    /**
79
+     * @return string
80
+     */
48 81
     public function getContactEmail(): ?string;
49 82
 
83
+    /**
84
+     * @return void
85
+     */
50 86
     public function setContactEmail(?string $contactEmail): void;
51 87
 
52 88
     public function isSkippingShippingStepAllowed(): bool;
53 89
 
90
+    /**
91
+     * @return void
92
+     */
54 93
     public function setSkippingShippingStepAllowed(bool $skippingShippingStepAllowed): void;
55 94
 
56 95
     public function isSkippingPaymentStepAllowed(): bool;
57 96
 
97
+    /**
98
+     * @return void
99
+     */
58 100
     public function setSkippingPaymentStepAllowed(bool $skippingPaymentStepAllowed): void;
59 101
 
60 102
     public function isAccountVerificationRequired(): bool;
61 103
 
104
+    /**
105
+     * @return void
106
+     */
62 107
     public function setAccountVerificationRequired(bool $accountVerificationRequired): void;
63 108
 
109
+    /**
110
+     * @return ShopBillingDataInterface|null
111
+     */
64 112
     public function getShopBillingData(): ?ShopBillingDataInterface;
65 113
 
114
+    /**
115
+     * @return void
116
+     */
66 117
     public function setShopBillingData(ShopBillingDataInterface $shopBillingData): void;
67 118
 }
Please login to merge, or discard this patch.