2018-01-24 19:58:38 +01: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\ModelDescriber\Annotations;
|
|
|
|
|
|
|
|
use Doctrine\Common\Annotations\Reader;
|
|
|
|
use EXSyst\Component\Swagger\Schema;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
class AnnotationsReader
|
|
|
|
{
|
|
|
|
private $annotationsReader;
|
|
|
|
|
|
|
|
private $phpDocReader;
|
|
|
|
private $swgAnnotationsReader;
|
2018-01-25 14:59:48 +01:00
|
|
|
private $symfonyConstraintAnnotationReader;
|
2018-01-24 19:58:38 +01:00
|
|
|
|
|
|
|
public function __construct(Reader $annotationsReader)
|
|
|
|
{
|
|
|
|
$this->annotationsReader = $annotationsReader;
|
|
|
|
|
|
|
|
$this->phpDocReader = new PropertyPhpDocReader();
|
|
|
|
$this->swgAnnotationsReader = new SwgAnnotationsReader($annotationsReader);
|
2018-01-25 14:59:48 +01:00
|
|
|
$this->symfonyConstraintAnnotationReader = new SymfonyConstraintAnnotationReader($annotationsReader);
|
2018-01-24 19:58:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function updateDefinition(\ReflectionClass $reflectionClass, Schema $schema)
|
|
|
|
{
|
|
|
|
$this->swgAnnotationsReader->updateDefinition($reflectionClass, $schema);
|
2018-01-25 14:59:48 +01:00
|
|
|
$this->symfonyConstraintAnnotationReader->setSchema($schema);
|
2018-01-24 19:58:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function updateProperty(\ReflectionProperty $reflectionProperty, Schema $property)
|
|
|
|
{
|
|
|
|
$this->phpDocReader->updateProperty($reflectionProperty, $property);
|
|
|
|
$this->swgAnnotationsReader->updateProperty($reflectionProperty, $property);
|
2018-01-25 14:59:48 +01:00
|
|
|
$this->symfonyConstraintAnnotationReader->updateProperty($reflectionProperty, $property);
|
2018-01-24 19:58:38 +01:00
|
|
|
}
|
|
|
|
}
|