vendor/friendsofsymfony/rest-bundle/Controller/Annotations/NoRoute.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\NoRoute annotation is deprecated since FOSRestBundle 2.8.'__NAMESPACE__), E_USER_DEPRECATED);
  12. /**
  13.  * No Route annotation class.
  14.  *
  15.  * @Annotation
  16.  * @Target({"METHOD","CLASS"})
  17.  *
  18.  * @deprecated since 2.8
  19.  */
  20. class NoRoute extends Route
  21. {
  22. }