@@ -17,6 +17,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -17,6 +17,7 @@ |
||
| 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 | |
@@ -19,11 +19,13 @@ |
||
| 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 | |
@@ -55,7 +55,7 @@ |
||
| 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 | } |
@@ -61,7 +61,7 @@ discard block |
||
| 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 |
||
| 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 | } |