for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Collmex Invoice Get Type
*
* @author Marcus Jaschen <[email protected]>
* @license http://www.opensource.org/licenses/mit-license MIT License
* @link https://github.com/mjaschen/collmex
*/
namespace MarcusJaschen\Collmex\Type;
* @property string $type_identifier
* @property string $invoice_id
* @property int $output_medium
class InvoiceOutputSet extends AbstractType implements TypeInterface
{
* @var array
protected $template = [
'type_identifier' => 'INVOICE_OUTPUT_SET',
'invoice_id' => null,
'output_medium' => null,
];
* Formally validates the type data in $data attribute.
* @return bool Validation success
public function validate()
return true;
}