DataWizard/tests/tools/d3TestAction.php

19 lines
295 B
PHP
Raw Normal View History

2021-11-24 23:38:28 +01:00
<?php
namespace D3\DataWizard\tests\tools;
use D3\DataWizard\Application\Model\ActionBase;
class d3TestAction extends ActionBase
{
public function getTitle(): string
{
return 'TestTitle';
}
public function getQuery(): array
{
2021-11-26 23:16:32 +01:00
return ["UPDATE 1"];
2021-11-24 23:38:28 +01:00
}
2022-01-17 10:59:18 +01:00
}