WordInflector.php 143 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Inflector;
  4. interface WordInflector
  5. {
  6. public function inflect(string $word): string;
  7. }