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 K301 extends Element implements ElementInterface
{
const REG = 'K301';
const LEVEL = 4;
const PARENT = 'K300';
protected $parameters = [
'COD_ITEM' => [
'type' => 'string',
'regex' => '^.{1,60}$',
'required' => true,
'info' => 'Código do item produzido (campo 02 do Registro 0200)',
'format' => ''
],
'QTD' => [
'type' => 'numeric',
'regex' => '^\d+(\.\d*)?|\.\d+$',
'info' => 'Quantidade produzida',
'format' => '15v3'
]
];
/**
* Constructor
* @param \stdClass $std
*/
public function __construct(\stdClass $std)
parent::__construct(self::REG);
$this->std = $this->standarize($std);
}