Completed
Push — 1.2-symfony4-packages ( 39ce77...14945a )
by Kamil
18:11
created
src/Sylius/Component/Mailer/Model/EmailInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param string $code
28
+     * @return void
28 29
      */
29 30
     public function setCode(string $code): void;
30 31
 
@@ -35,11 +36,18 @@  discard block
 block discarded – undo
35 36
 
36 37
     /**
37 38
      * @param bool $enabled
39
+     * @return void
38 40
      */
39 41
     public function setEnabled(bool $enabled): void;
40 42
 
43
+    /**
44
+     * @return void
45
+     */
41 46
     public function enable(): void;
42 47
 
48
+    /**
49
+     * @return void
50
+     */
43 51
     public function disable(): void;
44 52
 
45 53
     /**
@@ -49,6 +57,7 @@  discard block
 block discarded – undo
49 57
 
50 58
     /**
51 59
      * @param string $subject
60
+     * @return void
52 61
      */
53 62
     public function setSubject(string $subject): void;
54 63
 
@@ -59,6 +68,7 @@  discard block
 block discarded – undo
59 68
 
60 69
     /**
61 70
      * @param string $content
71
+     * @return void
62 72
      */
63 73
     public function setContent(string $content);
64 74
 
@@ -69,6 +79,7 @@  discard block
 block discarded – undo
69 79
 
70 80
     /**
71 81
      * @param string $template
82
+     * @return void
72 83
      */
73 84
     public function setTemplate(string $template): void;
74 85
 
@@ -79,6 +90,7 @@  discard block
 block discarded – undo
79 90
 
80 91
     /**
81 92
      * @param string $senderName
93
+     * @return void
82 94
      */
83 95
     public function setSenderName(string $senderName): void;
84 96
 
@@ -89,6 +101,7 @@  discard block
 block discarded – undo
89 101
 
90 102
     /**
91 103
      * @param string $senderAddress
104
+     * @return void
92 105
      */
93 106
     public function setSenderAddress(string $senderAddress): void;
94 107
 }
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
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
      *
30 30
      * @throws ExistingServiceException
31 31
      * @throws \InvalidArgumentException
32
+     * @return void
32 33
      */
33 34
     public function register(string $identifier, $service): void;
34 35
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
      * @param string $identifier
37 38
      *
38 39
      * @throws NonExistingServiceException
40
+     * @return void
39 41
      */
40 42
     public function unregister(string $identifier): void;
41 43
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/FlashHelperInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param RequestConfiguration $requestConfiguration
26 26
      * @param string $actionName
27 27
      * @param ResourceInterface|null $resource
28
+     * @return void
28 29
      */
29 30
     public function addSuccessFlash(
30 31
         RequestConfiguration $requestConfiguration,
@@ -35,12 +36,14 @@  discard block
 block discarded – undo
35 36
     /**
36 37
      * @param RequestConfiguration $requestConfiguration
37 38
      * @param string $actionName
39
+     * @return void
38 40
      */
39 41
     public function addErrorFlash(RequestConfiguration $requestConfiguration, string $actionName): void;
40 42
 
41 43
     /**
42 44
      * @param RequestConfiguration $requestConfiguration
43 45
      * @param ResourceControllerEvent $event
46
+     * @return void
44 47
      */
45 48
     public function addFlashFromEvent(RequestConfiguration $requestConfiguration, ResourceControllerEvent $event): void;
46 49
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/StateMachineInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * @param RequestConfiguration $configuration
33 33
      * @param ResourceInterface $resource
34
+     * @return void
34 35
      */
35 36
     public function apply(RequestConfiguration $configuration, ResourceInterface $resource): void;
36 37
 }
Please login to merge, or discard this patch.
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.