for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace kalanis\Pohoda;
class Bank extends AbstractDocument
{
public function getImportRoot(): string
return 'lst:bank';
}
/**
* {@inheritdoc}
*/
protected function getDocumentNamespace(): string
return 'bnk';
protected function getDocumentName(): string
return 'bank';
protected function getDefaultDto(): Common\Dtos\AbstractDto
return new Bank\BankDto();