setGovernor($governor); return $task; } static function constructFromCollection(array $c, Game|Test|null &$governor = null): array { $chgs = []; foreach ($c as $ch) { $chgs[] = TaskFactory::fromArray($ch, $governor); } return $chgs; } }