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 Illuminate\Queue\Events; class QueueBusy { /** * The connection..
Decoded Output download
<?php
namespace Illuminate\Queue\Events;
class QueueBusy
{
/**
* The connection name.
*
* @var string
*/
public $connection;
/**
* The queue name.
*
* @var string
*/
public $queue;
/**
* The size of the queue.
*
* @var int
*/
public $size;
/**
* Create a new event instance.
*
* @param string $connection
* @param string $queue
* @param int $size
* @return void
*/
public function __construct($connection, $queue, $size)
{
$this->connection = $connection;
$this->queue = $queue;
$this->size = $size;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Queue\Events;
class QueueBusy
{
/**
* The connection name.
*
* @var string
*/
public $connection;
/**
* The queue name.
*
* @var string
*/
public $queue;
/**
* The size of the queue.
*
* @var int
*/
public $size;
/**
* Create a new event instance.
*
* @param string $connection
* @param string $queue
* @param int $size
* @return void
*/
public function __construct($connection, $queue, $size)
{
$this->connection = $connection;
$this->queue = $queue;
$this->size = $size;
}
}
Function Calls
None |
Stats
MD5 | 66bc6a4f4a59f38fd5b6dcc5f66fb25d |
Eval Count | 0 |
Decode Time | 118 ms |