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; class CreateSettingsTable extends Mi..

Decoded Output download

<?php

use Illuminate\Database\Migrations\Migration;

class CreateSettingsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        //
        Schema::create('settings', function ($table) {
            $table->increments('id');
            $table->string('option_name');
            $table->string('option_value');
            $table->timestamps();
            $table->integer('user_id')->nullable();
            $table->engine = 'InnoDB';
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('settings');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

use Illuminate\Database\Migrations\Migration;

class CreateSettingsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        //
        Schema::create('settings', function ($table) {
            $table->increments('id');
            $table->string('option_name');
            $table->string('option_value');
            $table->timestamps();
            $table->integer('user_id')->nullable();
            $table->engine = 'InnoDB';
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('settings');
    }
}

Function Calls

None

Variables

None

Stats

MD5 1b42874eef8ed929d699fde762030bee
Eval Count 0
Decode Time 106 ms