@@ -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 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | public function get($parameter, $default = null) |
| 27 | 27 | { |
| 28 | 28 | foreach ($this->items as $token) { |
| 29 | - if ($token === $parameter || 0 === strpos($token, $parameter . '=')) { |
|
| 29 | + if ($token === $parameter || 0 === strpos($token, $parameter.'=')) { |
|
| 30 | 30 | if (false !== $pos = strpos($parameter, '=')) { |
| 31 | 31 | return substr($token, $pos + 1); |
| 32 | 32 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | public function has($parameter) : bool |
| 45 | 45 | { |
| 46 | 46 | foreach ($this->items as $token) { |
| 47 | - if ($token === $parameter || 0 === strpos($token, $parameter . '=')) { |
|
| 47 | + if ($token === $parameter || 0 === strpos($token, $parameter.'=')) { |
|
| 48 | 48 | return true; |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | public function remove($parameter) : core\collections\interfaces\Map |
| 59 | 59 | { |
| 60 | 60 | foreach ($this->items as $key => $token) { |
| 61 | - if ($token === $parameter || 0 === strpos($token, $parameter . '=')) { |
|
| 61 | + if ($token === $parameter || 0 === strpos($token, $parameter.'=')) { |
|
| 62 | 62 | unset($this->items[$key]); |
| 63 | 63 | } |
| 64 | 64 | } |