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 use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Bluepr..
Decoded Output download
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddEmailDomainAndFormatToSettings extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->string('email_domain')->nullable()->default(null);
$table->string('email_format')->nullable()->default('filastname');
$table->string('username_format')->nullable()->default('filastname');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('settings', function ($table) {
$table->dropColumn(
'email_domain',
'email_format',
'username_format'
);
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddEmailDomainAndFormatToSettings extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->string('email_domain')->nullable()->default(null);
$table->string('email_format')->nullable()->default('filastname');
$table->string('username_format')->nullable()->default('filastname');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('settings', function ($table) {
$table->dropColumn(
'email_domain',
'email_format',
'username_format'
);
});
}
}
Function Calls
None |
Stats
MD5 | 9d1e898b030c3c0ffc913f2808b3d775 |
Eval Count | 0 |
Decode Time | 101 ms |