vendor/friendsofsymfony/rest-bundle/Routing/ClassResourceInterface.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\Routing;
  11. @trigger_error(sprintf('The %s\ClassResourceInterface is deprecated since FOSRestBundle 2.8.'__NAMESPACE__), E_USER_DEPRECATED);
  12. /**
  13.  * Implement interface to define that missing resources in the methods should
  14.  * use the class name to identify the resource.
  15.  *
  16.  * @author Lukas Kahwe Smith <smith@pooteeweet.org>
  17.  *
  18.  * @deprecated since 2.8
  19.  */
  20. interface ClassResourceInterface
  21. {
  22. }