. */ declare(strict_types=1); namespace SP\Domain\Upgrade\Ports; use SP\Domain\Config\Ports\ConfigDataInterface; /** * Interface UpgradeHandler */ interface UpgradeHandlerService { public function apply(string $version, ConfigDataInterface $configData): bool; }