Current path: home/webdevt/prestashop17/vendor/symfony/symfony/src/Symfony/Component/PropertyInfo/
?? Go up: /home/webdevt/prestashop17/vendor/symfony/symfony/src/Symfony/Component
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\PropertyInfo;
/**
* Default {@see PropertyInfoExtractorInterface} implementation.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class PropertyInfoExtractor implements PropertyInfoExtractorInterface
{
private $listExtractors;
private $typeExtractors;
private $descriptionExtractors;
private $accessExtractors;
/**
* @param iterable|PropertyListExtractorInterface[] $listExtractors
* @param iterable|PropertyTypeExtractorInterface[] $typeExtractors
* @param iterable|PropertyDescriptionExtractorInterface[] $descriptionExtractors
* @param iterable|PropertyAccessExtractorInterface[] $accessExtractors
*/
public function __construct($listExtractors = [], $typeExtractors = [], $descriptionExtractors = [], $accessExtractors = [])
{
$this->listExtractors = $listExtractors;
$this->typeExtractors = $typeExtractors;
$this->descriptionExtractors = $descriptionExtractors;
$this->accessExtractors = $accessExtractors;
}
/**
* {@inheritdoc}
*/
public function getProperties($class, array $context = [])
{
return $this->extract($this->listExtractors, 'getProperties', [$class, $context]);
}
/**
* {@inheritdoc}
*/
public function getShortDescription($class, $property, array $context = [])
{
return $this->extract($this->descriptionExtractors, 'getShortDescription', [$class, $property, $context]);
}
/**
* {@inheritdoc}
*/
public function getLongDescription($class, $property, array $context = [])
{
return $this->extract($this->descriptionExtractors, 'getLongDescription', [$class, $property, $context]);
}
/**
* {@inheritdoc}
*/
public function getTypes($class, $property, array $context = [])
{
return $this->extract($this->typeExtractors, 'getTypes', [$class, $property, $context]);
}
/**
* {@inheritdoc}
*/
public function isReadable($class, $property, array $context = [])
{
return $this->extract($this->accessExtractors, 'isReadable', [$class, $property, $context]);
}
/**
* {@inheritdoc}
*/
public function isWritable($class, $property, array $context = [])
{
return $this->extract($this->accessExtractors, 'isWritable', [$class, $property, $context]);
}
/**
* Iterates over registered extractors and return the first value found.
*
* @param iterable $extractors
* @param string $method
*
* @return mixed
*/
private function extract($extractors, $method, array $arguments)
{
foreach ($extractors as $extractor) {
$value = \call_user_func_array([$extractor, $method], $arguments);
if (null !== $value) {
return $value;
}
}
return null;
}
}