Files
nextcloud/php/src/Container/ContainerState.php
T
2024-10-07 13:24:21 +02:00

13 lines
289 B
PHP

<?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';
}