| 1 | <?php |
||
| 39 | abstract class AbstractStatus implements StatusInterface |
||
| 40 | { |
||
| 41 | /** |
||
| 42 | * The state name. |
||
| 43 | * |
||
| 44 | * @ODM\Field(type="string") |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | protected $state; |
||
| 48 | |||
| 49 | public static function getStates() |
||
| 55 | |||
| 56 | public function __construct($state) |
||
| 66 | |||
| 67 | public function __toString() |
||
| 71 | |||
| 72 | public function is($state) |
||
| 76 | } |