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