File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -27,17 +27,19 @@ class OAuthEvent extends Event
27
27
private $ user ;
28
28
29
29
/**
30
- * @var \FOS\FOSOAuthServerBundle \Model\ClientInterface
30
+ * @var \FOS\OAuthServerBundle \Model\ClientInterface
31
31
*/
32
32
private $ client ;
33
33
34
34
/**
35
- * @var Boolean
35
+ * @var bool
36
36
*/
37
37
private $ isAuthorizedClient ;
38
38
39
39
/**
40
- * @param UserInterface $user
40
+ * @param UserInterface $user
41
+ * @param ClientInterface $client
42
+ * @param bool $isAuthorizedClient
41
43
*/
42
44
public function __construct (UserInterface $ user , ClientInterface $ client , $ isAuthorizedClient = false )
43
45
{
@@ -55,15 +57,15 @@ public function getUser()
55
57
}
56
58
57
59
/**
58
- * @param Boolean $isAuthorizedClient
60
+ * @param bool $isAuthorizedClient
59
61
*/
60
62
public function setAuthorizedClient ($ isAuthorizedClient )
61
63
{
62
64
$ this ->isAuthorizedClient = $ isAuthorizedClient ;
63
65
}
64
66
65
67
/**
66
- * @return Boolean
68
+ * @return bool
67
69
*/
68
70
public function isAuthorizedClient ()
69
71
{
You can’t perform that action at this time.
0 commit comments