Completed
Push — master ( e029dc...6ecc4c )
by Ivannis Suárez
03:27
created
Tests/Fixtures/Event/UserEventSubscriber.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param LoginUserEvent $event
29 29
      *
30
-     * @return bool
30
+     * @return boolean|null
31 31
      */
32 32
     public function onLogin(LoginUserEvent $event)
33 33
     {
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * @param LoginUserEvent $event
39 39
      *
40
-     * @return bool
40
+     * @return boolean|null
41 41
      */
42 42
     public function onLoginSuccess(LoginUserEvent $event)
43 43
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * @param Event $event
49 49
      *
50
-     * @return bool
50
+     * @return boolean|null
51 51
      */
52 52
     public function onFoo(Event $event)
53 53
     {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * @param Event $event
58 58
      *
59
-     * @return bool
59
+     * @return boolean|null
60 60
      */
61 61
     public function onBar(Event $event)
62 62
     {
Please login to merge, or discard this patch.
Tests/Fixtures/Command/LogoutUserCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * LogoutUserCommand constructor.
29 29
      *
30
-     * @param $email
30
+     * @param string $email
31 31
      */
32 32
     public function __construct($email)
33 33
     {
Please login to merge, or discard this patch.