Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Xentral\Modules\Pipedrive\Scheduler;
|
||||
|
||||
use ArrayObject;
|
||||
|
||||
interface PipedriveSchedulerTaskInterface
|
||||
{
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function execute(): void;
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function cleanup(): void;
|
||||
|
||||
/**
|
||||
* @param ArrayObject $data
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function beforeScheduleAction(ArrayObject $data);
|
||||
|
||||
/**
|
||||
* @param ArrayObject $data
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function afterScheduleAction(ArrayObject $data);
|
||||
}
|
||||
Reference in New Issue
Block a user