Skip to content
Prev Previous commit
Next Next commit
Trait property default value cannot be overridden
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Feb 17, 2022
commit 77c4fc8a4e34b9a1432f64c6121c7a9871a1bc2a
4 changes: 2 additions & 2 deletions lib/Service/UserMigrationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@
class UserMigrationService {
use TMigratorBasicVersionHandling;

protected bool $mandatory = true;

protected IRootFolder $root;

protected IConfig $config;
Expand Down Expand Up @@ -83,6 +81,8 @@ public function __construct(
$this->userManager = $userManager;
$this->container = $container;
$this->coordinator = $coordinator;

$this->mandatory = true;
}

/**
Expand Down