Skip to content

Commit 6791c75

Browse files
authored
nit: remove @ from file get contents
1 parent 9b61d39 commit 6791c75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Install/GuidelineAssist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function fileHasClassLike(string $path): bool
112112
return $cache[$path];
113113
}
114114

115-
$code = @file_get_contents($path);
115+
$code = file_get_contents($path);
116116
if ($code === false) {
117117
return $cache[$path] = false;
118118
}

0 commit comments

Comments
 (0)