Skip to content

Commit 293b483

Browse files
OskarStarkxabbuh
authored andcommitted
[Filesystem][Finder][Form] Use CPP
1 parent 2d3a1ad commit 293b483

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Exception/IOException.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
*/
2121
class IOException extends \RuntimeException implements IOExceptionInterface
2222
{
23-
private ?string $path;
24-
25-
public function __construct(string $message, int $code = 0, \Throwable $previous = null, string $path = null)
26-
{
27-
$this->path = $path;
28-
23+
public function __construct(
24+
string $message,
25+
int $code = 0,
26+
\Throwable $previous = null,
27+
private ?string $path = null,
28+
) {
2929
parent::__construct($message, $code, $previous);
3030
}
3131

0 commit comments

Comments
 (0)