Skip to content

Commit

Permalink
phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierlacot committed Aug 13, 2024
1 parent e4c17fb commit f8e47fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extension/Attributes/Util/AttributesHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static function parseAttributes(Cursor $cursor): array
/** @psalm-suppress PossiblyUndefinedArrayOffset */
[$name, $value] = \explode('=', $attribute, 2);

if ('true' === $value) {
if ($value === 'true') {
$attributes[$name] = true;
continue;
}
Expand Down

0 comments on commit f8e47fc

Please sign in to comment.