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\Behavior; use Cake\ORM\Behavior; ..
Decoded Output download
<?php
declare(strict_types=1);
namespace TestApp\Model\Behavior;
use Cake\ORM\Behavior;
class Test2Behavior extends Behavior
{
protected array $_defaultConfig = [
'implementedFinders' => [
'foo' => 'findFoo',
],
'implementedMethods' => [
'doSomething' => 'doSomething',
],
];
/**
* Test for event bindings.
*/
public function beforeFind(): void
{
}
/**
* Test finder
*/
public function findFoo(): void
{
}
/**
* Test method
*/
public function doSomething(): void
{
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace TestApp\Model\Behavior;
use Cake\ORM\Behavior;
class Test2Behavior extends Behavior
{
protected array $_defaultConfig = [
'implementedFinders' => [
'foo' => 'findFoo',
],
'implementedMethods' => [
'doSomething' => 'doSomething',
],
];
/**
* Test for event bindings.
*/
public function beforeFind(): void
{
}
/**
* Test finder
*/
public function findFoo(): void
{
}
/**
* Test method
*/
public function doSomething(): void
{
}
}
Function Calls
None |
Stats
MD5 | f94ec2cfe9e32a3acce2d30d3db97abc |
Eval Count | 0 |
Decode Time | 79 ms |