vendor/friendsofsymfony/rest-bundle/Inflector/DoctrineInflector.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSRestBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace FOS\RestBundle\Inflector;
  11. @trigger_error(sprintf('The %s\DoctrineInflector class is deprecated since FOSRestBundle 2.8.'__NAMESPACE__), E_USER_DEPRECATED);
  12. use Doctrine\Common\Inflector\Inflector;
  13. /**
  14.  * Inflector object using the Doctrine/Inflector.
  15.  *
  16.  * @author Mark Kazemier <Markkaz>
  17.  *
  18.  * @deprecated since 2.8
  19.  */
  20. class DoctrineInflector implements InflectorInterface
  21. {
  22.     /**
  23.      * {@inheritdoc}
  24.      */
  25.     public function pluralize($word)
  26.     {
  27.         return Inflector::pluralize($word);
  28.     }
  29. }