Skip to content

Commit dc1768a

Browse files
committed
Fix typo in exception message
1 parent 3304559 commit dc1768a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RouteStorage/FileRouteStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function saveRoute(string $route, int $statusCode): void
2828
public function getRoutes(): array
2929
{
3030
if (!file_exists($this->file)) {
31-
throw new \InvalidArgumentException("File \"{$this->file}\"does not exists, did you correclty run tests?");
31+
throw new \InvalidArgumentException("File \"{$this->file}\" does not exists, did you correclty run tests?");
3232
}
3333

3434
if (false === $routes = @file($this->file, \FILE_IGNORE_NEW_LINES)) {

0 commit comments

Comments
 (0)