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