ebs/tests/Unit/Dto/Admin/DummyFormCommand.php
2023-12-21 08:49:38 +01:00

22 lines
448 B
PHP

<?php
declare(strict_types=1);
namespace App\Tests\Unit\Dto\Admin;
use App\Message\Command\Admin\AbstractFormCommand;
final class DummyFormCommand extends AbstractFormCommand
{
public ?string $wrongSectionProperty = null; // wrong section for field, only dummySection is alloawed
/**
* @return array<string>
*/
protected function getSections(): array
{
return [
'dummySection',
];
}
}