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 Barryvdh\Debugbar\Tests\Jobs; use Illuminate\Contracts\Queue\ShouldQueue..

Decoded Output download

<?php

namespace Barryvdh\Debugbar\Tests\Jobs;

use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;

class OrderShipped implements ShouldQueue
{
    use Dispatchable;

    private $orderId;

    public function __construct($orderId)
    {
        $this->orderId = $orderId;
    }

    public function handle()
    {
        // Do Nothing
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Barryvdh\Debugbar\Tests\Jobs;

use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;

class OrderShipped implements ShouldQueue
{
    use Dispatchable;

    private $orderId;

    public function __construct($orderId)
    {
        $this->orderId = $orderId;
    }

    public function handle()
    {
        // Do Nothing
    }
}

Function Calls

None

Variables

None

Stats

MD5 85ce6e5c5bf257ab560a18cbde11ae50
Eval Count 0
Decode Time 82 ms