Skip to content

Commit a8354bc

Browse files
committed
Changed Boolean to bool
1 parent 2f1c81a commit a8354bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Event/OAuthEvent.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ class OAuthEvent extends Event
3232
private $client;
3333

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

3939
/**
4040
* @param UserInterface $user
4141
* @param ClientInterface $client
42-
* @param Boolean $isAuthorizedClient
42+
* @param bool $isAuthorizedClient
4343
*/
4444
public function __construct(UserInterface $user, ClientInterface $client, $isAuthorizedClient = false)
4545
{
@@ -57,15 +57,15 @@ public function getUser()
5757
}
5858

5959
/**
60-
* @param Boolean $isAuthorizedClient
60+
* @param bool $isAuthorizedClient
6161
*/
6262
public function setAuthorizedClient($isAuthorizedClient)
6363
{
6464
$this->isAuthorizedClient = $isAuthorizedClient;
6565
}
6666

6767
/**
68-
* @return Boolean
68+
* @return bool
6969
*/
7070
public function isAuthorizedClient()
7171
{

0 commit comments

Comments
 (0)