Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.x] Adds datetime parsing to Request instance #39945

Merged
merged 12 commits into from
Dec 17, 2021
Prev Previous commit
Style fixes.
  • Loading branch information
DarkGhostHunter committed Dec 16, 2021
commit e394e89b4549b68be202f54b4fdc4c028826b02b
2 changes: 1 addition & 1 deletion tests/Http/HttpRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public function testDateMethod()
public function testDateMethodExceptionWhenValueInvalid()
{
$this->expectException(InvalidArgumentException::class);

$request = Request::create('/', 'GET', [
'date' => 'invalid',
]);
Expand Down