Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit b679656

Browse files
committed
Max line length is 125 characters
1 parent a1ea7e9 commit b679656

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/RequireFileExistsRule.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ public function processNode(Node $node, Scope $scope): array
3535
$filePath = $this->resolveFilePath($node->expr, $scope);
3636
if ($filePath !== null && !file_exists($filePath)) {
3737
return [
38-
RuleErrorBuilder::message(sprintf('Included or required file "%s" does not exist.', $filePath))->build(),
38+
RuleErrorBuilder::message(
39+
sprintf(
40+
'Included or required file "%s" does not exist.',
41+
$filePath
42+
)
43+
)->build(),
3944
];
4045
}
4146
}

0 commit comments

Comments
 (0)