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 Illuminate\Tests\Integration\Auth\Fixtures; use Illuminate\Foundation\Au..
Decoded Output download
<?php
namespace Illuminate\Tests\Integration\Auth\Fixtures;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class AuthenticationTestUser extends Authenticatable
{
use Notifiable;
public $table = 'users';
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var string[]
*/
protected $guarded = [];
/**
* The attributes that should be hidden for arrays.
*
* @var string[]
*/
protected $hidden = [
'password', 'remember_token',
];
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Integration\Auth\Fixtures;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class AuthenticationTestUser extends Authenticatable
{
use Notifiable;
public $table = 'users';
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var string[]
*/
protected $guarded = [];
/**
* The attributes that should be hidden for arrays.
*
* @var string[]
*/
protected $hidden = [
'password', 'remember_token',
];
}
Function Calls
None |
Stats
MD5 | 6bde5ef783c8dab5b9e8d68081019dca |
Eval Count | 0 |
Decode Time | 106 ms |