for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NFePHP\EFD\Elements\ICMSIPI;
use NFePHP\EFD\Common\Element;
use NFePHP\EFD\Common\ElementInterface;
use \stdClass;
class D301 extends Element implements ElementInterface
{
const REG = 'D301';
const LEVEL = 3;
const PARENT = '';
protected $parameters = [
'NUM_DOC_CANC' => [
'type' => 'numeric',
'regex' => '^[0-9]{0,9}$',
'required' => true,
'info' => 'Número do documento fiscal cancelado',
'format' => ''
]
];
/**
* Constructor
* @param \stdClass $std
*/
public function __construct(\stdClass $std)
parent::__construct(self::REG);
$this->std = $this->standarize($std);
}