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\Database; class ColumnSchemaAwareTypeVa..
Decoded Output download
<?php
declare(strict_types=1);
namespace TestApp\Database;
class ColumnSchemaAwareTypeValueObject
{
protected $_value;
public function __construct(string $value)
{
$this->_value = $value;
}
public function value(): string
{
return $this->_value;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace TestApp\Database;
class ColumnSchemaAwareTypeValueObject
{
protected $_value;
public function __construct(string $value)
{
$this->_value = $value;
}
public function value(): string
{
return $this->_value;
}
}
Function Calls
None |
Stats
MD5 | 1fc2ad815af148e54a6bd3f71736bea0 |
Eval Count | 0 |
Decode Time | 109 ms |