| 1 | <?php |
||
| 18 | class Z0001 extends Element implements ElementInterface |
||
| 19 | { |
||
| 20 | const REG = '0001'; |
||
| 21 | const LEVEL = 1; |
||
| 22 | const PARENT = '0000'; |
||
| 23 | |||
| 24 | protected $parameters = [ |
||
| 25 | 'ind_dad' => [ |
||
| 26 | 'type' => 'numeric', |
||
| 27 | 'regex' => '^[0-1]{1}$', |
||
| 28 | 'required' => true, |
||
| 29 | 'info' => 'Indicador de movimento: 0- Bloco com dados informados; 1- Bloco sem dados informados.', |
||
| 30 | 'format' => '' |
||
| 31 | ] |
||
| 32 | ]; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Constructor |
||
| 36 | * @param \stdClass $std |
||
| 37 | */ |
||
| 38 | public function __construct(\stdClass $std) |
||
| 43 | } |
||
| 44 |