Kori 29ec20bda1 Fix exception when attempting to read swagger annotation for virtual property (#1136)
* Fix exception when attempting to read swagger annotation for virtual property

* drop jms 1.0, add stopwatch for dependency
2017-12-09 14:31:56 +01:00

47 lines
1.0 KiB
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 Nelmio\ApiDocBundle\Tests\Functional\Entity\VirtualProperty;
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()
{
}
/**
* @Route("/api/yaml", methods={"GET"})
* @SWG\Response(
* response=200,
* description="Success",
* @Model(type=VirtualProperty::class)
* )
*/
public function yamlAction()
{
}
}