mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
2df454c0c3
* Compound validation rule support * Compound validation rule support * Compound validation rule support * Compound validation rule support * Remove duplicated method * error during merge * wrong variable name * Simplify PR * Fix CS * Use same indentation as before Co-authored-by: Guilhem Niot <guilhem@gniot.fr> Co-authored-by: Guilhem Niot <guilhem.niot@gmail.com>
11 lines
159 B
PHP
11 lines
159 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\ModelDescriber\Annotations\Fixture;
|
|
|
|
class CompoundStub
|
|
{
|
|
public $constraints = [];
|
|
}
|