Update php/src/Container/WorkingState.php

Co-authored-by: Simon L. <szaimen@e.mail.de>
Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
This commit is contained in:
Jean-Yves 2024-10-07 13:20:49 +02:00
parent edeb5ca40a
commit dc209adb84
No known key found for this signature in database
GPG key ID: 644C8B9C4CABAEF7
4 changed files with 25 additions and 25 deletions

View file

@ -0,0 +1,12 @@
<?php
namespace AIO\Container;
enum ContainerState: string {
case ImageDoesNotExist = 'image_does_not_exist';
case NotRestarting = 'not_restarting';
case Restarting = 'restarting';
case Running = 'running';
case Starting = 'starting';
case Stopped = 'stopped';
}