Skip to content

Commit 6595df9

Browse files
committed
Apply fixes from StyleCI
1 parent 9f3af90 commit 6595df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monorepo/CodeIntelligence/CodeIntelligence.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ protected function formatBladeElementIdentifiers(): string
404404

405405
foreach ($this->bladeElementIdentifiers as $identifier => $count) {
406406
$occurrence = $count === 1 ? 'occurrence' : 'occurrences';
407-
if (!str_contains($identifier, '$')) {
407+
if (! str_contains($identifier, '$')) {
408408
$identifier = '#'.$identifier;
409409
}
410410
$html .= sprintf('<li><code>%s</code> <small>(%d %s)</small></li>', e($identifier), $count, $occurrence);

0 commit comments

Comments
 (0)