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 namespace Database\Seeders; use App\Models\User; use Illuminate\Database\Seeder; ..

Decoded Output download

<?php

namespace Database\Seeders;

use App\Models\User;
use Illuminate\Database\Seeder;

class UserSeeder extends Seeder
{
    public function run(): void
    {
        User::factory()->create([
            'id' => 0,
            'name' => 'Root User',
            'email' => '[email protected]',
        ]);
        User::factory()->create([
            'id' => 1,
            'name' => 'Normal User (but in root team)',
            'email' => '[email protected]',
        ]);
        User::factory()->create([
            'id' => 2,
            'name' => 'Normal User (not in root team)',
            'email' => '[email protected]',
        ]);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Database\Seeders;

use App\Models\User;
use Illuminate\Database\Seeder;

class UserSeeder extends Seeder
{
    public function run(): void
    {
        User::factory()->create([
            'id' => 0,
            'name' => 'Root User',
            'email' => '[email protected]',
        ]);
        User::factory()->create([
            'id' => 1,
            'name' => 'Normal User (but in root team)',
            'email' => '[email protected]',
        ]);
        User::factory()->create([
            'id' => 2,
            'name' => 'Normal User (not in root team)',
            'email' => '[email protected]',
        ]);
    }
}

Function Calls

None

Variables

None

Stats

MD5 9e3a313454399bcfcdf30dcfa04d960b
Eval Count 0
Decode Time 132 ms