vendor/friendsofsymfony/rest-bundle/Controller/Annotations/Route.php line 25

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. use Symfony\Component\Routing\Annotation\Route as BaseRoute;
  12. /**
  13.  * Route annotation class.
  14.  *
  15.  * @Annotation
  16.  */
  17. class Route extends BaseRoute
  18. {
  19.     public function __construct(array $data)
  20.     {
  21.         parent::__construct($data);
  22.         if (!$this->getMethods()) {
  23.             $this->setMethods((array) $this->getMethod());
  24.         }
  25.     }
  26.     /**
  27.      * @return string|null
  28.      */
  29.     public function getMethod()
  30.     {
  31.         return;
  32.     }
  33. }