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 CashSlip extends AbstractDocument
{
public function getImportRoot(): string
return 'lst:prodejka';
}
/**
* {@inheritdoc}
*/
protected function getDocumentNamespace(): string
return 'pro';
protected function getDocumentName(): string
return 'prodejka';
protected function getDefaultDto(): Common\Dtos\AbstractDto
return new CashSlip\CashSlipDto();