Skip to content

Commit

Permalink
Fix: Version
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Aug 14, 2023
1 parent 385819d commit a2c261b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/RuleSet/Custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

final class Custom extends AbstractRuleSet implements ExplicitRuleSet
{
protected string $name = 'custom';
protected string $name = 'custom (PHP 8.1)';

protected array $rules = [
'align_multiline_comment' => false,
Expand Down Expand Up @@ -276,5 +276,5 @@ final class Custom extends AbstractRuleSet implements ExplicitRuleSet
'yoda_style' => false,
];

protected int $targetPhpVersion = 70400;
protected int $targetPhpVersion = 80100;
}
4 changes: 2 additions & 2 deletions test/Unit/RuleSet/CustomTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#[Framework\Attributes\CoversClass(RuleSet\Custom::class)]
final class CustomTest extends ExplicitRuleSetTestCase
{
protected string $name = 'custom';
protected string $name = 'custom (PHP 8.1)';

protected array $rules = [
'align_multiline_comment' => false,
Expand Down Expand Up @@ -281,5 +281,5 @@ final class CustomTest extends ExplicitRuleSetTestCase
'yoda_style' => false,
];

protected int $targetPhpVersion = 70400;
protected int $targetPhpVersion = 80100;
}

0 comments on commit a2c261b

Please sign in to comment.