Completed
Push — scalar-types/registry ( 38a5a0 )
by Kamil
75:54 queued 51:59
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/Mailer/Sender/SenderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * @param array $recipients
24 24
      * @param array $data
25 25
      * @param array $attachments
26
+     * @return void
26 27
      */
27 28
     public function send(string $code, array $recipients, array $data = [], array $attachments = []): void;
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/PrioritizedServiceRegistryInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 interface PrioritizedServiceRegistryInterface
20 20
 {
21 21
     /**
22
-     * @return iterable
22
+     * @return \Zend\Stdlib\PriorityQueue
23 23
      */
24 24
     public function all(): iterable;
25 25
 
@@ -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($service, int $priority = 0): void;
34 35
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
      * @param object $service
37 38
      *
38 39
      * @throws NonExistingServiceException
40
+     * @return void
39 41
      */
40 42
     public function unregister($service): void;
41 43
 
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.