for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MarcusJaschen\Collmex\Type;
class ProjectStaffGet extends AbstractType implements TypeInterface
{
/**
* @var array
*/
protected $template = [
'type_identifier' => 'PROJECT_STAFF_GET',
'project_id' => null,
];
* Formally validates the type data in $data attribute.
*
* @return bool Validation success
public function validate()
return true;
}