You are here

ScheduledTransitionsJobsInterface.php in Scheduled Transitions 2.x

Same filename and directory in other branches
  1. 8 src/ScheduledTransitionsJobsInterface.php

File

src/ScheduledTransitionsJobsInterface.php
View source
<?php

declare (strict_types=1);
namespace Drupal\scheduled_transitions;


/**
 * Job runner for Scheduled Transitions.
 */
interface ScheduledTransitionsJobsInterface {

  /**
   * Checks for transitions needing to be run, and adds them to a queue.
   */
  public function jobCreator() : void;

}

Interfaces

Namesort descending Description
ScheduledTransitionsJobsInterface Job runner for Scheduled Transitions.