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 2ac0a17 commit aaa1424Copy full SHA for aaa1424
src/File/PathNotFoundException.php
@@ -8,14 +8,9 @@
8
final class PathNotFoundException extends Exception
9
{
10
11
- public function __construct(private string $path)
+ public function __construct(string $path)
12
13
parent::__construct(sprintf('Path %s does not exist', $path));
14
}
15
16
- public function getPath(): string
17
- {
18
- return $this->path;
19
- }
20
-
21
0 commit comments