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
|
|
|
}
|
|
|
|
}
|