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 declare(strict_types=1); namespace Tests\Rules\Data; use Illuminate\Foundation\Bu..
Decoded Output download
<?php
declare(strict_types=1);
namespace Tests\Rules\Data;
use Illuminate\Foundation\Bus\Dispatchable;
class LaravelJob
{
use Dispatchable;
/** @var string */
private $foo;
/** @var int */
private $bar;
public function __construct(string $foo, int $bar)
{
$this->foo = $foo;
$this->bar = $bar;
}
}
class LaravelJobWithoutConstructor
{
use Dispatchable;
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Tests\Rules\Data;
use Illuminate\Foundation\Bus\Dispatchable;
class LaravelJob
{
use Dispatchable;
/** @var string */
private $foo;
/** @var int */
private $bar;
public function __construct(string $foo, int $bar)
{
$this->foo = $foo;
$this->bar = $bar;
}
}
class LaravelJobWithoutConstructor
{
use Dispatchable;
}
Function Calls
None |
Stats
MD5 | f8ed478e2987a04a1bc9cf436b6ae686 |
Eval Count | 0 |
Decode Time | 107 ms |