| 1 | <?php | ||
| 17 | trait StateMutatorTrait | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @inheritdoc | ||
| 21 | */ | ||
| 22 | public function isEnabled() | ||
| 26 | |||
| 27 | /** | ||
| 28 | * @inheritdoc | ||
| 29 | */ | ||
| 30 | public function isDisabled() | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @inheritdoc | ||
| 37 | */ | ||
| 38 | public function toEnabled() | ||
| 43 | |||
| 44 | /** | ||
| 45 | * @inheritdoc | ||
| 46 | */ | ||
| 47 | public function toDisabled() | ||
| 52 | } | ||
| 53 |