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\Inflector\Rules\Portuguese; use Doctr..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\Inflector\Rules\Portuguese;
use Doctrine\Inflector\Rules\Pattern;
final class Uninflected
{
/** @return Pattern[] */
public static function getSingular(): iterable
{
yield from self::getDefault();
}
/** @return Pattern[] */
public static function getPlural(): iterable
{
yield from self::getDefault();
}
/** @return Pattern[] */
private static function getDefault(): iterable
{
yield new Pattern('trax');
yield new Pattern('tnis');
yield new Pattern('nibus');
yield new Pattern('lpis');
yield new Pattern('fnix');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\Inflector\Rules\Portuguese;
use Doctrine\Inflector\Rules\Pattern;
final class Uninflected
{
/** @return Pattern[] */
public static function getSingular(): iterable
{
yield from self::getDefault();
}
/** @return Pattern[] */
public static function getPlural(): iterable
{
yield from self::getDefault();
}
/** @return Pattern[] */
private static function getDefault(): iterable
{
yield new Pattern('trax');
yield new Pattern('tnis');
yield new Pattern('nibus');
yield new Pattern('lpis');
yield new Pattern('fnix');
}
}
Function Calls
None |
Stats
MD5 | 8f7cf9e02fd6f9dc669c8226a51b6db9 |
Eval Count | 0 |
Decode Time | 114 ms |