PageRenderTime 50ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/Controller/Annotations/Unlink.php

https://bitbucket.org/gencer/fosrestbundle
PHP | 25 lines | 9 code | 3 blank | 13 comment | 0 complexity | 69eaf5d3499bee1ef1fb851cac961d1c MD5 | raw file
  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. /**
  12. * UNLINK Route annotation class.
  13. * @Annotation
  14. * @Target("METHOD")
  15. */
  16. class Unlink extends Route
  17. {
  18. public function getMethod()
  19. {
  20. return 'UNLINK';
  21. }
  22. }