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 Z1910 extends Element implements ElementInterface
{
const REG = '1910';
const LEVEL = 3;
const PARENT = '1900';
protected $parameters = [
'DT_INI' => [
'type' => 'integer',
'regex' => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
'required' => true,
'info' => 'Data inicial da sub-apuração',
'format' => ''
],
'DT_FIN' => [
'info' => 'Data final da sub-apuração',
]
];
/**
* Constructor
* @param \stdClass $std
*/
public function __construct(\stdClass $std)
parent::__construct(self::REG);
$this->std = $this->standarize($std);
}