Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
src/Sylius/Component/Resource/Model/TimestampableInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param \DateTimeInterface|null $updatedAt
39
+     * @return void
38 40
      */
39 41
     public function setUpdatedAt(?\DateTimeInterface $updatedAt);
40 42
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/ToggleableInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -25,10 +25,17 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/TranslatableInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -41,21 +41,25 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/TranslationInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param TranslatableInterface|null $translatable
28
+     * @return void
28 29
      */
29 30
     public function setTranslatable(?TranslatableInterface $translatable): void;
30 31
 
@@ -35,6 +36,7 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param string|null $locale
39
+     * @return void
38 40
      */
39 41
     public function setLocale(?string $locale): void;
40 42
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/VersionedInterface.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 int|null $version
28
+     * @return void
28 29
      */
29 30
     public function setVersion(?int $version): void;
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Storage/StorageInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,12 +35,14 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string $name
38
-     * @param mixed $value
38
+     * @param string $value
39
+     * @return void
39 40
      */
40 41
     public function set(string $name, $value): void;
41 42
 
42 43
     /**
43 44
      * @param string $name
45
+     * @return void
44 46
      */
45 47
     public function remove(string $name): void;
46 48
 
Please login to merge, or discard this patch.
Resource/Translation/TranslatableEntityLocaleAssignerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param TranslatableInterface $translatableEntity
25
+     * @return void
25 26
      */
26 27
     public function assignLocale(TranslatableInterface $translatableEntity): void;
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Validator/EnabledValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @param mixed $value
45
+     * @param ToggleableInterface $value
46 46
      */
47 47
     private function ensureValueImplementsToggleableInterface($value): void
48 48
     {
Please login to merge, or discard this patch.
Core/Promotion/Applicator/UnitsPromotionAdjustmentsApplicatorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
      * @param OrderInterface $order
26 26
      * @param PromotionInterface $promotion
27 27
      * @param array|int[] $adjustmentsAmounts
28
+     * @return void
28 29
      */
29 30
     public function apply(OrderInterface $order, PromotionInterface $promotion, array $adjustmentsAmounts): void;
30 31
 }
Please login to merge, or discard this patch.