Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsedlacek committed Jan 2, 2023
1 parent 048c9aa commit 89eb82b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=8.1 <8.3",
"php": ">=8.0 <8.3",
"nette/component-model": "^4.0",
"nette/http": "^4.0",
"nette/utils": "^4.0"
Expand Down
8 changes: 4 additions & 4 deletions tests/Forms/Container.values.BackedEnum.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ use Tester\Assert;
require __DIR__ . '/../bootstrap.php';

enum TestEnum: string {
case CASE_1 = 'case 1';
case CASE_2 = 'case 2';
case CASE_3 = 'case 3';
case CASE_4 = 'case 4';
case CASE_1 = 'case 1';
case CASE_2 = 'case 2';
case CASE_3 = 'case 3';
case CASE_4 = 'case 4';
}

function createForm(): Form
Expand Down

0 comments on commit 89eb82b

Please sign in to comment.