rector/vendor/doctrine/inflector/lib/Doctrine/Inflector/WordInflector.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

13 lines
201 B
PHP

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