mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
17 lines
299 B
PHP
17 lines
299 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\Backup\Scheduler;
|
|
|
|
use ArrayObject;
|
|
|
|
interface BackupSchedulerTaskInterface
|
|
{
|
|
public function execute();
|
|
|
|
public function cleanup();
|
|
|
|
public function beforeScheduleAction(ArrayObject $args);
|
|
|
|
public function afterScheduleAction(ArrayObject $args);
|
|
}
|