Skip to content

Commit bfc54df

Browse files
committed
PHP: remove support for PHP 8.2
1 parent 9b0aa31 commit bfc54df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: ['8.2', '8.3', '8.4']
16+
php-versions: ['8.3', '8.4']
1717
fail-fast: false
1818

1919
steps:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"nette/neon": "^3.4",
15-
"php": "^8.2",
15+
"php": "^8.3",
1616
"squizlabs/php_codesniffer": "^4.0"
1717
},
1818
"require-dev": {

src/OutdatedFiles.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ final class OutdatedFiles
88
{
99
private static self|null $instance = null;
1010

11-
private const WAIT_FOR_ALL_PROCESSES_SECONDS = 30;
11+
private const int WAIT_FOR_ALL_PROCESSES_SECONDS = 30;
1212

1313
private Ignores $ignores;
1414

src/PhpCsInjections.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
final class PhpCsInjections
99
{
10-
private const PROTOCOL = 'file';
10+
private const string PROTOCOL = 'file';
1111

1212
/** @var resource|null */
1313
public $context;

0 commit comments

Comments
 (0)