Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Channel/Model/ChannelAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param ChannelInterface|null $channel
28
+     * @return void
28 29
      */
29 30
     public function setChannel(?ChannelInterface $channel): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param string|null $name
37
+     * @return void
37 38
      */
38 39
     public function setName(?string $name): void;
39 40
 
@@ -44,6 +45,7 @@  discard block
 block discarded – undo
44 45
 
45 46
     /**
46 47
      * @param string|null $description
48
+     * @return void
47 49
      */
48 50
     public function setDescription(?string $description): void;
49 51
 
@@ -54,6 +56,7 @@  discard block
 block discarded – undo
54 56
 
55 57
     /**
56 58
      * @param string|null $hostname
59
+     * @return void
57 60
      */
58 61
     public function setHostname(?string $hostname): void;
59 62
 
@@ -64,6 +67,7 @@  discard block
 block discarded – undo
64 67
 
65 68
     /**
66 69
      * @param string|null $color
70
+     * @return void
67 71
      */
68 72
     public function setColor(?string $color): void;
69 73
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelsAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -34,11 +34,13 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param ChannelInterface $channel
37
+     * @return void
37 38
      */
38 39
     public function addChannel(ChannelInterface $channel): void;
39 40
 
40 41
     /**
41 42
      * @param ChannelInterface $channel
43
+     * @return void
42 44
      */
43 45
     public function removeChannel(ChannelInterface $channel): void;
44 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Currency/Context/CurrencyNotFoundException.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,6 +20,8 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * {@inheritdoc}
23
+     * @param string $message
24
+     * @param CurrencyNotFoundException $previousException
23 25
      */
24 26
     public function __construct(?string $message = null, ?\Exception $previousException = null)
25 27
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Currency/Model/CurrenciesAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -34,11 +34,13 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param CurrencyInterface $currency
37
+     * @return void
37 38
      */
38 39
     public function addCurrency(CurrencyInterface $currency): void;
39 40
 
40 41
     /**
41 42
      * @param CurrencyInterface $currency
43
+     * @return void
42 44
      */
43 45
     public function removeCurrency(CurrencyInterface $currency): void;
44 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Currency/Model/ExchangeRateInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param float|null $ratio
30
+     * @return void
30 31
      */
31 32
     public function setRatio(?float $ratio);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param CurrencyInterface $currency
41
+     * @return void
40 42
      */
41 43
     public function setSourceCurrency(CurrencyInterface $currency): void;
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param CurrencyInterface $currency
52
+     * @return void
50 53
      */
51 54
     public function setTargetCurrency(CurrencyInterface $currency): void;
52 55
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Context/LocaleNotFoundException.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * {@inheritdoc}
23
+     * @param string $message
23 24
      */
24 25
     public function __construct(?string $message = null, \Exception $previousException = null)
25 26
     {
@@ -38,7 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string $localeCode
41
-     * @param array $availableLocalesCodes
42
+     * @param string[] $availableLocalesCodes
42 43
      *
43 44
      * @return self
44 45
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Locale/Model/LocalesAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -34,11 +34,13 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param LocaleInterface $locale
37
+     * @return void
37 38
      */
38 39
     public function addLocale(LocaleInterface $locale): void;
39 40
 
40 41
     /**
41 42
      * @param LocaleInterface $locale
43
+     * @return void
42 44
      */
43 45
     public function removeLocale(LocaleInterface $locale): void;
44 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Customer/Model/CustomerAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param CustomerInterface|null $customer
28
+     * @return void
28 29
      */
29 30
     public function setCustomer(?CustomerInterface $customer): void;
30 31
 }
Please login to merge, or discard this patch.