mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
09e6f30572
* if the group does not define per property exclusion, then remove possible obsolete property exclusions * if the group is using only the default group, then is as not defining a group * test that the user does not get a new alias just because another property pf the same object has some groups * use strict comparison
75 lines
1.8 KiB
PHP
75 lines
1.8 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\JMSComplex;
|
|
use Nelmio\ApiDocBundle\Tests\Functional\Entity\JMSDualComplex;
|
|
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;
|
|
|
|
/**
|
|
* @Route(host="api.example.com")
|
|
*/
|
|
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()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @Route("/api/jms_complex", methods={"GET"})
|
|
* @SWG\Response(
|
|
* response=200,
|
|
* description="Success",
|
|
* @Model(type=JMSComplex::class, groups={"list", "details", "user" : {"list"}})
|
|
* )
|
|
*/
|
|
public function complexAction()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @Route("/api/jms_complex_dual", methods={"GET"})
|
|
* @SWG\Response(
|
|
* response=200,
|
|
* description="Success",
|
|
* @Model(type=JMSDualComplex::class, groups={"Default", "complex" : {"user" : {"details"}}})
|
|
* )
|
|
*/
|
|
public function complexDualAction()
|
|
{
|
|
}
|
|
}
|