Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
Sylius/Bundle/ResourceBundle/DependencyInjection/Driver/DriverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param ContainerBuilder $container
26 26
      * @param MetadataInterface $metadata
27
+     * @return void
27 28
      */
28 29
     public function load(ContainerBuilder $container, MetadataInterface $metadata): void;
29 30
 
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Form/Builder/DefaultFormBuilderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
      * @param MetadataInterface $metadata
26 26
      * @param FormBuilderInterface $formBuilder
27 27
      * @param array $options
28
+     * @return void
28 29
      */
29 30
     public function build(MetadataInterface $metadata, FormBuilderInterface $formBuilder, array $options): void;
30 31
 }
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Form/Registry/FormTypeRegistryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param string $identifier
23 23
      * @param string $typeIdentifier
24 24
      * @param string $formType
25
+     * @return void
25 26
      */
26 27
     public function add(string $identifier, string $typeIdentifier, string $formType): void;
27 28
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Validator/DisabledValidator.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.
src/Sylius/Component/Payment/Model/PaymentMethodTranslationInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentsSubjectInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,11 +29,13 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Metadata/MetadataInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Metadata/RegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -45,12 +45,14 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/ArchivableInterface.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 \DateTimeInterface|null $archivedAt
28
+     * @return void
28 29
      */
29 30
     public function setArchivedAt(?\DateTimeInterface $archivedAt): void;
30 31
 }
Please login to merge, or discard this patch.