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