rector/vendor/doctrine/inflector/lib/Doctrine/Inflector/NoopWordInflector.php
Tomas Votruba 0ead874fad Updated Rector to commit 75c06eab69
75c06eab69 Fix match static method name in annotation (#446)
2021-07-19 05:06:26 +00:00

16 lines
300 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20210719\Doctrine\Inflector;
class NoopWordInflector implements \RectorPrefix20210719\Doctrine\Inflector\WordInflector
{
/**
* @param string $word
*/
public function inflect($word) : string
{
return $word;
}
}