1 | <?php |
||
9 | class TestScheduledDataObject extends DataObject implements TestOnly |
||
10 | { |
||
11 | private static $table_name = 'TestScheduledDataObject'; |
||
|
|||
12 | |||
13 | private static $db = array( |
||
14 | 'Title' => 'Varchar', |
||
15 | 'Message' => 'Varchar', |
||
16 | ); |
||
17 | |||
18 | private static $extensions = array( |
||
19 | ScheduledExecutionExtension::class |
||
20 | ); |
||
21 | |||
22 | public function onScheduledExecution() |
||
27 | } |
||
28 |