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\AdditionalMigrations; use Illuminat..
Decoded Output download
<?php
declare(strict_types=1);
namespace Tests\Unit\AdditionalMigrations;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTeamsTable extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('teams', static function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('team')->nullable();
$table->string('owner_email')->unique();
$table->timestamps();
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Tests\Unit\AdditionalMigrations;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTeamsTable extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('teams', static function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('team')->nullable();
$table->string('owner_email')->unique();
$table->timestamps();
});
}
}
Function Calls
None |
Stats
MD5 | fba9baaadc68b2594e3a9b2f3d985e75 |
Eval Count | 0 |
Decode Time | 94 ms |