<?php
namespace App;
abstract class InsuranceState
{
const PAID = 'PAID';
const UNDER_STOPPING = 'UNDER_STOPPING';
const STOPPED = 'STOPPED';
}