Inflector.php 555 B

12345678910111213141516171819
  1. <?php
  2. namespace Doctrine\Common\Util;
  3. use Doctrine\Common\Inflector\Inflector as BaseInflector;
  4. use function trigger_error;
  5. use const E_USER_DEPRECATED;
  6. @trigger_error(Inflector::class . ' is deprecated.', E_USER_DEPRECATED);
  7. /**
  8. * Doctrine inflector has static methods for inflecting text.
  9. *
  10. * Kept for backwards compatibility reasons, was moved to its own component.
  11. *
  12. * @deprecated The Inflector class is deprecated, use Doctrine\Common\Inflector\Inflector from doctrine/inflector package instead,
  13. */
  14. class Inflector extends BaseInflector
  15. {
  16. }