| 1 | <?php |
||
| 23 | class InvoiceOutputSet extends AbstractType implements TypeInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $template = [ |
||
| 29 | 'type_identifier' => 'INVOICE_OUTPUT_SET', |
||
| 30 | 'invoice_id' => null, |
||
| 31 | 'output_medium' => null, |
||
| 32 | ]; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Formally validates the type data in $data attribute. |
||
| 36 | * |
||
| 37 | * @return bool Validation success |
||
| 38 | */ |
||
| 39 | public function validate() |
||
| 43 | } |
||
| 44 |