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
35 lines
673 B
PHP
35 lines
673 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\Entity;
|
|
|
|
use JMS\Serializer\Annotation as Serializer;
|
|
use Nelmio\ApiDocBundle\Annotation\Model;
|
|
use Swagger\Annotations as SWG;
|
|
|
|
class JMSDualComplex
|
|
{
|
|
/**
|
|
* @Serializer\Type("integer")
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @SWG\Property(ref=@Model(type=JMSComplex::class))
|
|
*/
|
|
private $complex;
|
|
|
|
/**
|
|
* @SWG\Property(ref=@Model(type=JMSUser::class))
|
|
*/
|
|
private $user;
|
|
}
|