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\DBAL\Connection; use Doctrine\DBAL\Se..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Connection;
use Doctrine\DBAL\ServerVersionProvider;
class StaticServerVersionProvider implements ServerVersionProvider
{
public function __construct(private readonly string $version)
{
}
public function getServerVersion(): string
{
return $this->version;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Connection;
use Doctrine\DBAL\ServerVersionProvider;
class StaticServerVersionProvider implements ServerVersionProvider
{
public function __construct(private readonly string $version)
{
}
public function getServerVersion(): string
{
return $this->version;
}
}
Function Calls
None |
Stats
MD5 | 876aa2a95da0bc7507b418867011be98 |
Eval Count | 0 |
Decode Time | 103 ms |