for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MarcusJaschen\Collmex\Type;
/**
* Collmex Voucher Get Type.
*
* @author Marcus Jaschen <[email protected]>
* @property $type_identifier
* @property $voucher_id
* @property $client_id
* @property $customer_id
* @property $agent_id
* @property $voucher_desc
* @property $show_expired
* @property $only_changed
* @property $system_name
*/
class VoucherGet extends AbstractType implements TypeInterface
{
* @var array
protected $template = [
'type_identifier' => 'VOUCHER_GET',
'voucher_id' => null,
'client_id' => null,
'customer_id' => null,
'agent_id' => null,
'voucher_desc' => null,
'show_expired' => null,
'only_changed' => null,
'system_name' => null,
];
* Formally validates the type data in $data attribute.
* @return bool Validation success
public function validate(): bool
return true;
}