
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php


namespace JFB_Modules\Jobs\Interfaces;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die();
}

interface Recurring_Job_It extends Job_It, Time_Based_It {

	public function set_interval( int $interval );

	public function get_interval(): int;
}
