Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ public function removeFileUpload($filename)
10041004
*
10051005
* @param string $domain
10061006
* @param string $path
1007-
* @param boolean $secure
1007+
* @param bool $secure
10081008
* @return Header\Cookie|bool
10091009
*/
10101010
protected function prepareCookies($domain, $path, $secure)

src/Header/SetCookie.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -512,9 +512,9 @@ public function isValidForRequest($requestDomain, $path, $isSecure = false)
512512
* Checks whether the cookie should be sent or not in a specific scenario
513513
*
514514
* @param string|Zend\Uri\Uri $uri URI to check against (secure, domain, path)
515-
* @param boolean $matchSessionCookies Whether to send session cookies
515+
* @param bool $matchSessionCookies Whether to send session cookies
516516
* @param int $now Override the current time when checking for expiry time
517-
* @return boolean
517+
* @return bool
518518
*/
519519
public function match($uri, $matchSessionCookies = true, $now = null)
520520
{
@@ -554,7 +554,7 @@ public function match($uri, $matchSessionCookies = true, $now = null)
554554
* @param string $cookieDomain
555555
* @param string $host
556556
*
557-
* @return boolean
557+
* @return bool
558558
*/
559559
public static function matchCookieDomain($cookieDomain, $host)
560560
{
@@ -580,7 +580,7 @@ public static function matchCookieDomain($cookieDomain, $host)
580580
*
581581
* @param string $cookiePath
582582
* @param string $path
583-
* @return boolean
583+
* @return bool
584584
*/
585585
public static function matchCookiePath($cookiePath, $path)
586586
{

0 commit comments

Comments
 (0)