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\Database\Events; class SchemaDumped { /** * The data..
Decoded Output download
<?php
namespace Illuminate\Database\Events;
class SchemaDumped
{
/**
* The database connection instance.
*
* @var \Illuminate\Database\Connection
*/
public $connection;
/**
* The database connection name.
*
* @var string
*/
public $connectionName;
/**
* The path to the schema dump.
*
* @var string
*/
public $path;
/**
* Create a new event instance.
*
* @param \Illuminate\Database\Connection $connection
* @param string $path
* @return void
*/
public function __construct($connection, $path)
{
$this->connection = $connection;
$this->connectionName = $connection->getName();
$this->path = $path;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Database\Events;
class SchemaDumped
{
/**
* The database connection instance.
*
* @var \Illuminate\Database\Connection
*/
public $connection;
/**
* The database connection name.
*
* @var string
*/
public $connectionName;
/**
* The path to the schema dump.
*
* @var string
*/
public $path;
/**
* Create a new event instance.
*
* @param \Illuminate\Database\Connection $connection
* @param string $path
* @return void
*/
public function __construct($connection, $path)
{
$this->connection = $connection;
$this->connectionName = $connection->getName();
$this->path = $path;
}
}
Function Calls
| None |
Stats
| MD5 | bd27a9879f5804e34a4d77e21a220f15 |
| Eval Count | 0 |
| Decode Time | 90 ms |