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