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 Pterodactyl\Models; /** * Pterodactyl\Models\Setting. * * @property i..

Decoded Output download

<?php

namespace Pterodactyl\Models;

/**
 * Pterodactyl\Models\Setting.
 *
 * @property int $id
 * @property string $key
 * @property string $value
 */
class Setting extends Model
{
    /**
     * The table associated with the model.
     */
    protected $table = 'settings';

    public $timestamps = false;

    protected $fillable = ['key', 'value'];

    public static array $validationRules = [
        'key' => 'required|string|between:1,191',
        'value' => 'string',
    ];
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pterodactyl\Models;

/**
 * Pterodactyl\Models\Setting.
 *
 * @property int $id
 * @property string $key
 * @property string $value
 */
class Setting extends Model
{
    /**
     * The table associated with the model.
     */
    protected $table = 'settings';

    public $timestamps = false;

    protected $fillable = ['key', 'value'];

    public static array $validationRules = [
        'key' => 'required|string|between:1,191',
        'value' => 'string',
    ];
}

Function Calls

None

Variables

None

Stats

MD5 947b037759f40f464bebed492ebe73c1
Eval Count 0
Decode Time 86 ms