47 lines
1.1 KiB
PHP
Raw Normal View History

2017-06-25 15:40:07 +02:00
<?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;
2017-12-07 14:00:40 +08:00
use Nelmio\ApiDocBundle\Tests\Functional\Entity\JMSComplex;
2017-06-25 15:40:07 +02:00
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()
{
}
2017-12-07 14:00:40 +08:00
/**
* @Route("/api/jms_complex", methods={"GET"})
* @SWG\Response(
* response=200,
* description="Success",
* @Model(type=JMSComplex::class, groups={"list", "details", "user" : {"list"}})
* )
*/
public function complexAction()
{
}
2017-06-25 15:40:07 +02:00
}