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\Word;
use PHPUnit\Framework\TestCase;

class WordTest extends TestCase
{
    /** @var Word */
    private $word;

    public function testGetWord(): void
    {
        self::assertSame('test', $this->word->getWord());
    }

    protected function setUp(): void
    {
        $this->word = new Word('test');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Inflector\Rules;

use Doctrine\Inflector\Rules\Word;
use PHPUnit\Framework\TestCase;

class WordTest extends TestCase
{
    /** @var Word */
    private $word;

    public function testGetWord(): void
    {
        self::assertSame('test', $this->word->getWord());
    }

    protected function setUp(): void
    {
        $this->word = new Word('test');
    }
}

Function Calls

None

Variables

None

Stats

MD5 5723401eb3c660186f6550031f6fe171
Eval Count 0
Decode Time 231 ms