You are here

CronInterface.php in Commerce Core 8.2

File

modules/cart/src/CronInterface.php
View source
<?php

namespace Drupal\commerce_cart;


/**
 * Provides the interface for the cart cron.
 */
interface CronInterface {

  /**
   * Runs the cron.
   */
  public function run();

}

Interfaces

Namesort descending Description
CronInterface Provides the interface for the cart cron.