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 declare(strict_types=1); namespace Tests\Unit\BasicMigrations; use Illuminate\Dat..
Decoded Output download
<?php
declare(strict_types=1);
namespace Tests\Unit\BasicMigrations;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', static function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name')->nullable(false);
$table->string('email')->unique()->nullable();
$table->string('address1')->nullable(true);
$table->timestamps();
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Tests\Unit\BasicMigrations;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', static function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name')->nullable(false);
$table->string('email')->unique()->nullable();
$table->string('address1')->nullable(true);
$table->timestamps();
});
}
}
Function Calls
None |
Stats
MD5 | 5608767bd742adcca613778b70389a03 |
Eval Count | 0 |
Decode Time | 113 ms |