for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Madkom\RegistryApplication\Domain\CarManagement\Insurances;
class AssistanceInsurance extends Insurance
{
const INSURANCE_TYPE = 'ASS';
public function getType()
return self::INSURANCE_TYPE;
}