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 Doctrine\ORM\Mapping; use Attribute; /** Cach..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping;
use Attribute;
/** Caching to an entity or a collection. */
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY)]
final class Cache implements MappingAttribute
{
/** @psalm-param 'READ_ONLY'|'NONSTRICT_READ_WRITE'|'READ_WRITE' $usage */
public function __construct(
public readonly string $usage = 'READ_ONLY',
public readonly string|null $region = null,
) {
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping;
use Attribute;
/** Caching to an entity or a collection. */
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY)]
final class Cache implements MappingAttribute
{
/** @psalm-param 'READ_ONLY'|'NONSTRICT_READ_WRITE'|'READ_WRITE' $usage */
public function __construct(
public readonly string $usage = 'READ_ONLY',
public readonly string|null $region = null,
) {
}
}
Function Calls
None |
Stats
MD5 | fd0c9d403b6cd94ed57a84b240331f8f |
Eval Count | 0 |
Decode Time | 107 ms |