Skip to content

Commit 0353b9a

Browse files
committed
Merge pull request #361 from chapay/fix-phpdoc
Fixed phpdoc annotations
2 parents 0593127 + a8354bc commit 0353b9a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Event/OAuthEvent.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,19 @@ class OAuthEvent extends Event
2727
private $user;
2828

2929
/**
30-
* @var \FOS\FOSOAuthServerBundle\Model\ClientInterface
30+
* @var \FOS\OAuthServerBundle\Model\ClientInterface
3131
*/
3232
private $client;
3333

3434
/**
35-
* @var Boolean
35+
* @var bool
3636
*/
3737
private $isAuthorizedClient;
3838

3939
/**
40-
* @param UserInterface $user
40+
* @param UserInterface $user
41+
* @param ClientInterface $client
42+
* @param bool $isAuthorizedClient
4143
*/
4244
public function __construct(UserInterface $user, ClientInterface $client, $isAuthorizedClient = false)
4345
{
@@ -55,15 +57,15 @@ public function getUser()
5557
}
5658

5759
/**
58-
* @param Boolean $isAuthorizedClient
60+
* @param bool $isAuthorizedClient
5961
*/
6062
public function setAuthorizedClient($isAuthorizedClient)
6163
{
6264
$this->isAuthorizedClient = $isAuthorizedClient;
6365
}
6466

6567
/**
66-
* @return Boolean
68+
* @return bool
6769
*/
6870
public function isAuthorizedClient()
6971
{

0 commit comments

Comments
 (0)