We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8cb7db commit bbd59cdCopy full SHA for bbd59cd
src/Symfony/Component/HttpFoundation/Tests/CookieTest.php
@@ -376,7 +376,7 @@ public function testMaxAge()
376
377
$futureDateHalfHour = gmdate('D, d-M-Y H:i:s T', time() + 1800);
378
379
- // Max-Age value takes precendence before expires
+ // Max-Age value takes precedence before expires
380
$cookie = Cookie::fromString('foo=bar; expires='.$futureDateHalfHour.'; Max-Age=3600; path=/');
381
$this->assertEquals('foo=bar; expires='.$futureDateOneHour.'; Max-Age=3600; path=/', $cookie->__toString());
382
}
0 commit comments