Skip to content

Commit

Permalink
fix(migration-attributes): keep it 8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Aug 2, 2024
1 parent 7b67067 commit a329ce1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lib/private/Migration/MetadataManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
*/
class MetadataManager {
public function __construct(
private readonly IAppManager $appManager,
private readonly Connection $connection,
private readonly LoggerInterface $logger,
private IAppManager $appManager,
private Connection $connection,
private LoggerInterface $logger,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion lib/private/Updater/ReleaseMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
class ReleaseMetadata {
public function __construct(
private readonly IClientService $clientService,
private IClientService $clientService,
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class GenericMigrationAttribute extends MigrationAttribute implements JsonSerial
* @since 30.0.0
*/
public function __construct(
private readonly array $details = []
private array $details = []
) {
parent::__construct(
$details['table'] ?? '',
Expand Down

0 comments on commit a329ce1

Please sign in to comment.