DataWizard/tests/tools/d3TestExport.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\ExportBase;
class d3TestExport extends ExportBase
{
public function getTitle(): string
{
return 'TestTitle';
}
public function getQuery(): array
{
2021-12-20 13:41:24 +01:00
return ["SELECT 1"];
2021-11-24 23:38:28 +01:00
}
2022-01-17 10:59:18 +01:00
}