2017-07-25 10:09:41 +02:00

33 lines
727 B
PHP

<?php
/*
* This file is part of the NelmioApiDocBundle package.
*
* (c) Nelmio
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nelmio\ApiDocBundle\Tests\Functional\Controller;
use Nelmio\ApiDocBundle\Annotation\Model;
use Nelmio\ApiDocBundle\Tests\Functional\Entity\JMSUser;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Swagger\Annotations as SWG;
class JMSController
{
/**
* @Route("/api/jms", methods={"GET"})
* @SWG\Response(
* response=200,
* description="Success",
* @Model(type=JMSUser::class)
* )
*/
public function userAction()
{
}
}