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\Tests\Inflector\Rules; use Doctrine\I..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Inflector\Rules;
use Doctrine\Inflector\Rules\Pattern;
use Doctrine\Inflector\Rules\Transformation;
use PHPUnit\Framework\TestCase;
class TransformationTest extends TestCase
{
/** @var Transformation */
private $transformation;
public function testGetPattern(): void
{
self::assertSame('s$', $this->transformation->getPattern()->getPattern());
}
public function testGetReplacement(): void
{
self::assertSame('', $this->transformation->getReplacement());
}
public function testInflect(): void
{
self::assertSame('test', $this->transformation->inflect('tests'));
}
protected function setUp(): void
{
$this->transformation = new Transformation(new Pattern('s$'), '');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Inflector\Rules;
use Doctrine\Inflector\Rules\Pattern;
use Doctrine\Inflector\Rules\Transformation;
use PHPUnit\Framework\TestCase;
class TransformationTest extends TestCase
{
/** @var Transformation */
private $transformation;
public function testGetPattern(): void
{
self::assertSame('s$', $this->transformation->getPattern()->getPattern());
}
public function testGetReplacement(): void
{
self::assertSame('', $this->transformation->getReplacement());
}
public function testInflect(): void
{
self::assertSame('test', $this->transformation->inflect('tests'));
}
protected function setUp(): void
{
$this->transformation = new Transformation(new Pattern('s$'), '');
}
}
Function Calls
None |
Stats
MD5 | 6d1cbf01256785dc86d5d787f17c41a1 |
Eval Count | 0 |
Decode Time | 213 ms |