CronInterface.php in Commerce Core 8.2
Namespace
Drupal\commerce_cartFile
modules/cart/src/CronInterface.phpView source
<?php
namespace Drupal\commerce_cart;
/**
* Provides the interface for the cart cron.
*/
interface CronInterface {
/**
* Runs the cron.
*/
public function run();
}
Interfaces
Name | Description |
---|---|
CronInterface | Provides the interface for the cart cron. |