<?php

namespace EthanYehuda\CronjobManager\Model;

/**
 * Declarations of registry keys used by the CronjobManager module
 */
class RegistryConstants
{
    /**
     * Key for current cron job in registry
     */
    public const CURRENT_CRON_JOB = 'ethanyehuda_cronjobmanager_current_cron_job';

    /**
     * Key for current cron job in registry
     */
    public const CURRENT_CRON_CONFIG = 'ethanyehuda_cronjobmanager_current_cron_config';
}
