use Drupal\Component\Datetime\TimeInterface;
/**
* The controller constructor.
*/
public function __construct(
private readonly TimeInterface $datetimeTime,
) {}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container): self {
return new self(
$container->get('datetime.time'),
);
}