Skip to content

Commit

Permalink
tec: Add support for PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marienfressinaud committed Nov 29, 2024
1 parent 295ae8d commit 28c9209
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.2', '8.3']
php-versions: ['8.2', '8.3', '8.4']

services:
postgres:
Expand Down
1 change: 1 addition & 0 deletions .rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
->withSets([
SetList::PHP_82,
SetList::PHP_83,
SetList::PHP_84,
SetList::TYPE_DECLARATION,
]);
2 changes: 1 addition & 1 deletion src/Database/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Column

public ?string $format;

public function __construct(bool $computed = false, string $format = null)
public function __construct(bool $computed = false, ?string $format = null)
{
$this->computed = $computed;
$this->format = $format;
Expand Down

0 comments on commit 28c9209

Please sign in to comment.