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 App\Utils\Traits\AppSetup; use Illuminate\Database\Migrations\Migration; use Il..

Decoded Output download

<?php

use App\Utils\Traits\AppSetup;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
    use AppSetup;

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('bank_transactions', function (Blueprint $table) {
            $table->unsignedInteger('payment_id')->nullable();
        });

        \Illuminate\Support\Facades\Artisan::call('ninja:design-update');

        $this->buildCache(true);
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
    }
};
 ?>

Did this file decode correctly?

Original Code

<?php

use App\Utils\Traits\AppSetup;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
    use AppSetup;

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('bank_transactions', function (Blueprint $table) {
            $table->unsignedInteger('payment_id')->nullable();
        });

        \Illuminate\Support\Facades\Artisan::call('ninja:design-update');

        $this->buildCache(true);
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
    }
};

Function Calls

None

Variables

None

Stats

MD5 45732e3bda8283a5dd9aff0f6415457b
Eval Count 0
Decode Time 122 ms