@@ -44,11 +44,13 @@ |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @param ProvinceInterface $province |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function addProvince(ProvinceInterface $province): void; |
49 | 50 | |
50 | 51 | /** |
51 | 52 | * @param ProvinceInterface $province |
53 | + * @return void |
|
52 | 54 | */ |
53 | 55 | public function removeProvince(ProvinceInterface $province): void; |
54 | 56 |
@@ -39,6 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | /** |
41 | 41 | * @param string|null $name |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function setName(?string $name): void; |
44 | 45 | |
@@ -49,6 +50,7 @@ discard block |
||
49 | 50 | |
50 | 51 | /** |
51 | 52 | * @param string|null $type |
53 | + * @return void |
|
52 | 54 | */ |
53 | 55 | public function setType(?string $type): void; |
54 | 56 | |
@@ -59,6 +61,7 @@ discard block |
||
59 | 61 | |
60 | 62 | /** |
61 | 63 | * @param string|null $scope |
64 | + * @return void |
|
62 | 65 | */ |
63 | 66 | public function setScope(?string $scope): void; |
64 | 67 | |
@@ -74,11 +77,13 @@ discard block |
||
74 | 77 | |
75 | 78 | /** |
76 | 79 | * @param ZoneMemberInterface $member |
80 | + * @return void |
|
77 | 81 | */ |
78 | 82 | public function addMember(ZoneMemberInterface $member): void; |
79 | 83 | |
80 | 84 | /** |
81 | 85 | * @param ZoneMemberInterface $member |
86 | + * @return void |
|
82 | 87 | */ |
83 | 88 | public function removeMember(ZoneMemberInterface $member): void; |
84 | 89 |
@@ -28,6 +28,7 @@ |
||
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @param ZoneInterface|null $belongsTo |
31 | + * @return void |
|
31 | 32 | */ |
32 | 33 | public function setBelongsTo(?ZoneInterface $belongsTo): void; |
33 | 34 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param string|null $code |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setCode(?string $code): void; |
30 | 31 | } |
@@ -25,6 +25,7 @@ |
||
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 | } |
@@ -34,6 +34,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -34,11 +34,13 @@ |
||
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 | } |
@@ -20,6 +20,8 @@ |
||
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 | { |
@@ -34,11 +34,13 @@ |
||
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 | } |