| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | final class Rollback implements Command |
||
| 25 | { |
||
| 26 | use JsonHelper; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @psalm-pure |
||
| 30 | */ |
||
| 31 | public static function create(): self |
||
| 32 | { |
||
| 33 | return new self(); |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @psalm-pure |
||
| 38 | */ |
||
| 39 | public function toJson(): string |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @psalm-pure |
||
| 46 | */ |
||
| 47 | public function getName(): string |
||
| 50 | } |
||
| 51 | } |
||
| 52 |