@@ -24,6 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param string|null $name |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function setName(?string $name): void; |
29 | 30 | |
@@ -34,6 +35,7 @@ discard block |
||
34 | 35 | |
35 | 36 | /** |
36 | 37 | * @param string|null $description |
38 | + * @return void |
|
37 | 39 | */ |
38 | 40 | public function setDescription(?string $description): void; |
39 | 41 | |
@@ -44,6 +46,7 @@ discard block |
||
44 | 46 | |
45 | 47 | /** |
46 | 48 | * @param string|null $instructions |
49 | + * @return void |
|
47 | 50 | */ |
48 | 51 | public function setInstructions(?string $instructions): void; |
49 | 52 | } |
@@ -29,11 +29,13 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param PaymentInterface $payment |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function addPayment(PaymentInterface $payment): void; |
34 | 35 | |
35 | 36 | /** |
36 | 37 | * @param PaymentInterface $payment |
38 | + * @return void |
|
37 | 39 | */ |
38 | 40 | public function removePayment(PaymentInterface $payment): void; |
39 | 41 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | public function getDriver(): string; |
50 | 50 | |
51 | 51 | /** |
52 | - * @return ?string |
|
52 | + * @return string |
|
53 | 53 | */ |
54 | 54 | public function getTemplatesNamespace(): ?string; |
55 | 55 |
@@ -45,12 +45,14 @@ |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * @param MetadataInterface $metadata |
48 | + * @return void |
|
48 | 49 | */ |
49 | 50 | public function add(MetadataInterface $metadata): void; |
50 | 51 | |
51 | 52 | /** |
52 | 53 | * @param string $alias |
53 | 54 | * @param array $configuration |
55 | + * @return void |
|
54 | 56 | */ |
55 | 57 | public function addFromAliasAndConfiguration(string $alias, array $configuration): void; |
56 | 58 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param \DateTimeInterface|null $archivedAt |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setArchivedAt(?\DateTimeInterface $archivedAt): void; |
30 | 31 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param string|null $slug |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setSlug(?string $slug): void; |
30 | 31 | } |
@@ -25,6 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param \DateTimeInterface|null $createdAt |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setCreatedAt(?\DateTimeInterface $createdAt); |
30 | 31 | |
@@ -35,6 +36,7 @@ discard block |
||
35 | 36 | |
36 | 37 | /** |
37 | 38 | * @param \DateTimeInterface|null $updatedAt |
39 | + * @return void |
|
38 | 40 | */ |
39 | 41 | public function setUpdatedAt(?\DateTimeInterface $updatedAt); |
40 | 42 | } |
@@ -25,10 +25,17 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param bool $enabled |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function setEnabled(?bool $enabled): void; |
30 | 31 | |
32 | + /** |
|
33 | + * @return void |
|
34 | + */ |
|
31 | 35 | public function enable(): void; |
32 | 36 | |
37 | + /** |
|
38 | + * @return void |
|
39 | + */ |
|
33 | 40 | public function disable(): void; |
34 | 41 | } |
@@ -41,21 +41,25 @@ |
||
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param TranslationInterface $translation |
44 | + * @return void |
|
44 | 45 | */ |
45 | 46 | public function addTranslation(TranslationInterface $translation): void; |
46 | 47 | |
47 | 48 | /** |
48 | 49 | * @param TranslationInterface $translation |
50 | + * @return void |
|
49 | 51 | */ |
50 | 52 | public function removeTranslation(TranslationInterface $translation): void; |
51 | 53 | |
52 | 54 | /** |
53 | 55 | * @param string $locale |
56 | + * @return void |
|
54 | 57 | */ |
55 | 58 | public function setCurrentLocale(string $locale): void; |
56 | 59 | |
57 | 60 | /** |
58 | 61 | * @param string $locale |
62 | + * @return void |
|
59 | 63 | */ |
60 | 64 | public function setFallbackLocale(string $locale): void; |
61 | 65 | } |