diff --git a/src/Component.php b/src/Component.php index f6b7eef..834ddcc 100644 --- a/src/Component.php +++ b/src/Component.php @@ -25,9 +25,9 @@ public static function getDependedComponentClasses(): array /** * Initialize services */ - protected static function doInitialize(): void + protected static function doInitialize(bool $skipSchema = false): void { - parent::doInitialize(); + parent::doInitialize($skipSchema); self::initYAMLServices(dirname(__DIR__)); } }