Completed
Push — 1.1-csrf-token-user ( e22bcb...d4c2fb )
by Kamil
17:31
created
src/Sylius/Component/Customer/Model/CustomerInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param string|null $email
35
+     * @return void
35 36
      */
36 37
     public function setEmail(?string $email): void;
37 38
 
@@ -44,6 +45,7 @@  discard block
 block discarded – undo
44 45
 
45 46
     /**
46 47
      * @param string|null $emailCanonical
48
+     * @return void
47 49
      */
48 50
     public function setEmailCanonical(?string $emailCanonical): void;
49 51
 
@@ -59,6 +61,7 @@  discard block
 block discarded – undo
59 61
 
60 62
     /**
61 63
      * @param string|null $firstName
64
+     * @return void
62 65
      */
63 66
     public function setFirstName(?string $firstName): void;
64 67
 
@@ -69,6 +72,7 @@  discard block
 block discarded – undo
69 72
 
70 73
     /**
71 74
      * @param string|null $lastName
75
+     * @return void
72 76
      */
73 77
     public function setLastName(?string $lastName): void;
74 78
 
@@ -79,6 +83,7 @@  discard block
 block discarded – undo
79 83
 
80 84
     /**
81 85
      * @param \DateTimeInterface|null $birthday
86
+     * @return void
82 87
      */
83 88
     public function setBirthday(?\DateTimeInterface $birthday): void;
84 89
 
@@ -91,6 +96,7 @@  discard block
 block discarded – undo
91 96
      * You should use interface constants for that.
92 97
      *
93 98
      * @param string $gender
99
+     * @return void
94 100
      */
95 101
     public function setGender(string $gender): void;
96 102
 
@@ -111,6 +117,7 @@  discard block
 block discarded – undo
111 117
 
112 118
     /**
113 119
      * @param CustomerGroupInterface|null $group
120
+     * @return void
114 121
      */
115 122
     public function setGroup(?CustomerGroupInterface $group): void;
116 123
 
@@ -121,6 +128,7 @@  discard block
 block discarded – undo
121 128
 
122 129
     /**
123 130
      * @param string|null $phoneNumber
131
+     * @return void
124 132
      */
125 133
     public function setPhoneNumber(?string $phoneNumber): void;
126 134
 
@@ -131,6 +139,7 @@  discard block
 block discarded – undo
131 139
 
132 140
     /**
133 141
      * @param bool $subscribedToNewsletter
142
+     * @return void
134 143
      */
135 144
     public function setSubscribedToNewsletter(bool $subscribedToNewsletter): void;
136 145
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Review/Model/ReviewerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string|null $email
30
+     * @return void
30 31
      */
31 32
     public function setEmail(?string $email): void;
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param string|null $firstName
41
+     * @return void
40 42
      */
41 43
     public function setFirstName(?string $firstName): void;
42 44
 
@@ -47,6 +49,7 @@  discard block
 block discarded – undo
47 49
 
48 50
     /**
49 51
      * @param string|null $lastName
52
+     * @return void
50 53
      */
51 54
     public function setLastName(?string $lastName): void;
52 55
 }
Please login to merge, or discard this patch.
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.