for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace kalanis\Pohoda;
use kalanis\PohodaException;
class IndividualPrice extends AbstractAgenda
{
public function getImportRoot(): string
return 'lst:individualPrice';
}
/**
* {@inheritdoc}
*/
public function getXML(): \SimpleXMLElement
throw new PohodaException('Individual prices import is currently not supported.');
protected function getDefaultDto(): Common\Dtos\AbstractDto
return new Common\Dtos\EmptyDto();