Completed
Push — 1.4-password-hashing-2 ( b79be0...722ba0 )
by Kamil
16:49
created
src/Sylius/Component/Promotion/Model/PromotionRuleInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,9 +17,18 @@
 block discarded – undo
17 17
 
18 18
 interface PromotionRuleInterface extends ResourceInterface, ConfigurablePromotionElementInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setType(?string $type): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setConfiguration(array $configuration): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function setPromotion(?PromotionInterface $promotion): void;
25 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Model/PromotionSubjectInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,7 +26,13 @@
 block discarded – undo
26 26
 
27 27
     public function hasPromotion(PromotionInterface $promotion): bool;
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function addPromotion(PromotionInterface $promotion): void;
30 33
 
34
+    /**
35
+     * @return void
36
+     */
31 37
     public function removePromotion(PromotionInterface $promotion): void;
32 38
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Promotion/Processor/PromotionProcessorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface PromotionProcessorInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function process(PromotionSubjectInterface $subject): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/ServiceRegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -22,11 +22,13 @@
 block discarded – undo
22 22
      *
23 23
      * @throws ExistingServiceException
24 24
      * @throws \InvalidArgumentException
25
+     * @return void
25 26
      */
26 27
     public function register(string $identifier, $service): void;
27 28
 
28 29
     /**
29 30
      * @throws NonExistingServiceException
31
+     * @return void
30 32
      */
31 33
     public function unregister(string $identifier): void;
32 34
 
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Metadata/RegistryInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -33,7 +33,13 @@
 block discarded – undo
33 33
      */
34 34
     public function getByClass(string $className): MetadataInterface;
35 35
 
36
+    /**
37
+     * @return void
38
+     */
36 39
     public function add(MetadataInterface $metadata): void;
37 40
 
41
+    /**
42
+     * @return void
43
+     */
38 44
     public function addFromAliasAndConfiguration(string $alias, array $configuration): void;
39 45
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/ArchivableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 {
18 18
     public function getArchivedAt(): ?\DateTimeInterface;
19 19
 
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setArchivedAt(?\DateTimeInterface $archivedAt): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/CodeAwareInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -15,7 +15,13 @@
 block discarded – undo
15 15
 
16 16
 interface CodeAwareInterface
17 17
 {
18
+    /**
19
+     * @return string|null
20
+     */
18 21
     public function getCode(): ?string;
19 22
 
23
+    /**
24
+     * @return void
25
+     */
20 26
     public function setCode(?string $code): void;
21 27
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/SlugAwareInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 {
18 18
     public function getSlug(): ?string;
19 19
 
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setSlug(?string $slug): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/TranslatableInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -26,11 +26,23 @@
 block discarded – undo
26 26
 
27 27
     public function hasTranslation(TranslationInterface $translation): bool;
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function addTranslation(TranslationInterface $translation): void;
30 33
 
34
+    /**
35
+     * @return void
36
+     */
31 37
     public function removeTranslation(TranslationInterface $translation): void;
32 38
 
39
+    /**
40
+     * @return void
41
+     */
33 42
     public function setCurrentLocale(string $locale): void;
34 43
 
44
+    /**
45
+     * @return void
46
+     */
35 47
     public function setFallbackLocale(string $locale): void;
36 48
 }
Please login to merge, or discard this patch.