| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/plugins/wp-crontrol/src/Context/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/wp-crontrol/src/Context/FeatureContext.php |
<?php
/**
* Feature flag context for WP Crontrol.
*
* @package wp-crontrol
*/
namespace Crontrol\Context;
/**
* Interface for checking feature flags.
*
* Provides methods to check if various cron event features are enabled.
*/
interface FeatureContext {
/**
* Check whether PHP cron events are enabled globally on the site.
*/
public function php_crons_enabled(): bool;
/**
* Check whether URL cron events are enabled globally on the site.
*/
public function url_crons_enabled(): bool;
}