for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace kalanis\Pohoda\Invoice;
use kalanis\Pohoda\Common;
class AdvancePaymentItem extends Item
{
/**
* {@inheritdoc}
*/
public function getXML(): \SimpleXMLElement
$xml = $this->createXML()->addChild('inv:invoiceAdvancePaymentItem', '', $this->namespace('inv'));
$this->addElements($xml, $this->getDataElements(), 'inv');
return $xml;
}
protected function getDefaultDto(): Common\Dtos\AbstractDto
return new AdvancePaymentItemDto();