Completed
Push — master ( ee6be2...ddf6ae )
by Michał
03:18
created
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.
src/console/input/formats/tokens/Argv.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.