File "FieldInterface.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor/mtdowling/cron-expression/src/Cron/FieldInterface.php
File size: 248 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Cron;
if (!defined('ABSPATH')) exit;
use DateTime;
interface FieldInterface
{
 public function isSatisfiedBy(DateTime $date, $value);
 public function increment(DateTime $date, $invert = false);
 public function validate($value);
}