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 ProcessStatus: string { case QUEUED = 'queued'; ..

Decoded Output download

<?php

namespace App\Enums;

enum ProcessStatus: string
{
    case QUEUED = 'queued';
    case IN_PROGRESS = 'in_progress';
    case FINISHED = 'finished';
    case ERROR = 'error';
    case KILLED = 'killed';
    case CANCELLED = 'cancelled';
    case CLOSED = 'closed';
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Enums;

enum ProcessStatus: string
{
    case QUEUED = 'queued';
    case IN_PROGRESS = 'in_progress';
    case FINISHED = 'finished';
    case ERROR = 'error';
    case KILLED = 'killed';
    case CANCELLED = 'cancelled';
    case CLOSED = 'closed';
}

Function Calls

None

Variables

None

Stats

MD5 9a0c9feb0c227dc8071df82744d16bcd
Eval Count 0
Decode Time 79 ms