Skip to content

Commit d9f9e48

Browse files
committed
fixed types in phpdocs
1 parent 3c2c43c commit d9f9e48

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Firewall/AbstractAuthenticationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ final public function handle(GetResponseEvent $event)
171171
*
172172
* @param Request $request
173173
*
174-
* @return Boolean
174+
* @return bool
175175
*/
176176
protected function requiresAuthentication(Request $request)
177177
{

Firewall/LogoutListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function handle(GetResponseEvent $event)
121121
*
122122
* @param Request $request
123123
*
124-
* @return Boolean
124+
* @return bool
125125
*/
126126
protected function requiresLogout(Request $request)
127127
{

HttpUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function createRequest(Request $request, $path)
9696
* @param Request $request A Request instance
9797
* @param string $path A path (an absolute path (/foo), an absolute URL (http://...), or a route name (foo))
9898
*
99-
* @return Boolean true if the path is the same as the one from the Request, false otherwise
99+
* @return bool true if the path is the same as the one from the Request, false otherwise
100100
*/
101101
public function checkRequestPath(Request $request, $path)
102102
{

RememberMe/AbstractRememberMeServices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ protected function cancelCookie(Request $request)
295295
*
296296
* @param Request $request
297297
*
298-
* @return Boolean
298+
* @return bool
299299
*/
300300
protected function isRememberMeRequested(Request $request)
301301
{

RememberMe/TokenBasedRememberMeServices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected function processAutoLoginCookie(array $cookieParts, Request $request)
7373
* @param string $hash1 The first hash
7474
* @param string $hash2 The second hash
7575
*
76-
* @return Boolean true if the two hashes are the same, false otherwise
76+
* @return bool true if the two hashes are the same, false otherwise
7777
*/
7878
private function compareHashes($hash1, $hash2)
7979
{

0 commit comments

Comments
 (0)