<?php namespace App\Enums; final class DeploymentStatus { const DEPLOYING = 'deploying'; const FINISHED = 'finished'; const FAILED = 'failed'; }