Completed
Push — master ( 118e05...bf1981 )
by Michał
03:12
created
src/notify/interfaces/Dispatcher.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@  discard block
 block discarded – undo
17 17
      * @param   array|Notifiable    $notifiables    The entities which shall receive the Notification (single Notifiable
18 18
      *                                              or an iterable collection thereof).
19 19
      * @param   Notification        $notification   The Notification that shall be sent.
20
+     * @return void
20 21
      */
21 22
     public function send($notifiables, Notification $notification);
22 23
 
@@ -26,6 +27,7 @@  discard block
 block discarded – undo
26 27
      * @param   array|Notifiable    $notifiables    The entities which shall receive the Notification (single Notifiable
27 28
      *                                              or an iterable collection thereof).
28 29
      * @param   Notification        $notification   The Notification that shall be sent.
30
+     * @return void
29 31
      */
30 32
     public function sendNow($notifiables, Notification $notification);
31 33
 }
Please login to merge, or discard this patch.
src/notify/interfaces/Transport.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      * @param   Notifiable                  $notifiable     The Notifiable to send the Notification to.
18 18
      * @param   Notification                $notification   The Notification to send.
19 19
      * @throws  \InvalidArgumentException                   When the Notification is not supported by this Transport.
20
+     * @return void
20 21
      */
21 22
     public function send(Notifiable $notifiable, Notification $notification);
22 23
 
Please login to merge, or discard this patch.
src/notify/transports/mail/interfaces/drivers/Process.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -19,11 +19,13 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * Starts the Driver's process.
22
+     * @return void
22 23
      */
23 24
     public function start();
24 25
 
25 26
     /**
26 27
      * Stops the Driver's process.
28
+     * @return void
27 29
      */
28 30
     public function stop();
29 31
 
Please login to merge, or discard this patch.
src/console/input/Option.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      *
56 56
      * @return  string
57 57
      */
58
-    public function getShortcut() : ?string
58
+    public function getShortcut() : ? string
59 59
     {
60 60
         return $this->shortcut;
61 61
     }
Please login to merge, or discard this patch.
src/console/Input.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * {@inheritdoc}
63 63
      */
64
-    public function arguments() : ?input\parameter\values\Arguments
64
+    public function arguments() : ? input\parameter\values\Arguments
65 65
     {
66 66
         return $this->arguments;
67 67
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      */
72
-    public function options() : ?input\parameter\values\Options
72
+    public function options() : ? input\parameter\values\Options
73 73
     {
74 74
         return $this->options;
75 75
     }
Please login to merge, or discard this patch.