Skip to content

Commit c6f875f

Browse files
committed
final class has no use for protected property or method, make them private
1 parent d23ac28 commit c6f875f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CookieJar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ final class CookieJar implements \Countable, \IteratorAggregate
1212
/**
1313
* @var \SplObjectStorage
1414
*/
15-
protected $cookies;
15+
private $cookies;
1616

1717
public function __construct()
1818
{
@@ -92,7 +92,7 @@ public function getMatchingCookies(Cookie $cookie)
9292
*
9393
* @return Cookie[]
9494
*/
95-
protected function findMatchingCookies(callable $match)
95+
private function findMatchingCookies(callable $match)
9696
{
9797
$cookies = [];
9898

0 commit comments

Comments
 (0)