public const DEFAULT_DEPRECATION_TEMPLATE = 'The "%service_id%" service is deprecated. You should stop using it, as it will be removed in the future.';
25
26
/** @param string $message the deprecation template must contain the "%service_id%" placeholder */
27
public function __construct(
28
public readonly string $package,
29
public readonly string $version,
30
public readonly string $message = self::DEFAULT_DEPRECATION_TEMPLATE,