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 TestApp\Model\Entity; use Cake\ORM\Entity; cla..
Decoded Output download
<?php
declare(strict_types=1);
namespace TestApp\Model\Entity;
use Cake\ORM\Entity;
class ProtectedEntity extends Entity
{
protected array $_accessible = [
'id' => true,
'title' => false,
];
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace TestApp\Model\Entity;
use Cake\ORM\Entity;
class ProtectedEntity extends Entity
{
protected array $_accessible = [
'id' => true,
'title' => false,
];
}
Function Calls
None |
Stats
MD5 | 092509adbea6bef878ace780cc3327ed |
Eval Count | 0 |
Decode Time | 89 ms |