/Controller/Annotations/Unlink.php
https://bitbucket.org/gencer/fosrestbundle · PHP · 25 lines · 9 code · 3 blank · 13 comment · 0 complexity · 69eaf5d3499bee1ef1fb851cac961d1c MD5 · raw file
- <?php
- /*
- * This file is part of the FOSRestBundle package.
- *
- * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace FOS\RestBundle\Controller\Annotations;
- /**
- * UNLINK Route annotation class.
- * @Annotation
- * @Target("METHOD")
- */
- class Unlink extends Route
- {
- public function getMethod()
- {
- return 'UNLINK';
- }
- }