Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace App\Enums; enum ProxyTypes: string { case NONE = 'NONE'; case TR..

Decoded Output download

<?php

namespace App\Enums;

enum ProxyTypes: string
{
    case NONE = 'NONE';
    case TRAEFIK_V2 = 'TRAEFIK_V2';
    case NGINX = 'NGINX';
    case CADDY = 'CADDY';
}

enum ProxyStatus: string
{
    case EXITED = 'exited';
    case RUNNING = 'running';
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Enums;

enum ProxyTypes: string
{
    case NONE = 'NONE';
    case TRAEFIK_V2 = 'TRAEFIK_V2';
    case NGINX = 'NGINX';
    case CADDY = 'CADDY';
}

enum ProxyStatus: string
{
    case EXITED = 'exited';
    case RUNNING = 'running';
}

Function Calls

None

Variables

None

Stats

MD5 719a90414c94beab713e24d126654b77
Eval Count 0
Decode Time 102 ms