vendor/friendsofsymfony/rest-bundle/Controller/Annotations/NamePrefix.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\Controller\Annotations;
  11. @trigger_error(sprintf('The %s\NamePrefix annotation is deprecated since FOSRestBundle 2.8.'__NAMESPACE__), E_USER_DEPRECATED);
  12. use Doctrine\Common\Annotations\Annotation;
  13. /**
  14.  * NamePrefix Route annotation class.
  15.  *
  16.  * @Annotation
  17.  * @Target("CLASS")
  18.  *
  19.  * @deprecated since 2.8
  20.  */
  21. class NamePrefix extends Annotation
  22. {
  23. }