Symfony\Component\PropertyAccess\PropertyAccessor::__construct PHP Метод

__construct() публичный Метод

Should not be used by application code. Use {@link PropertyAccess::createPropertyAccessor()} instead.
public __construct ( boolean $magicCall = false, boolean $throwExceptionOnInvalidIndex = false, Psr\Cache\CacheItemPoolInterface $cacheItemPool = null )
$magicCall boolean
$throwExceptionOnInvalidIndex boolean
$cacheItemPool Psr\Cache\CacheItemPoolInterface
    public function __construct($magicCall = false, $throwExceptionOnInvalidIndex = false, CacheItemPoolInterface $cacheItemPool = null)
    {
        $this->magicCall = $magicCall;
        $this->ignoreInvalidIndices = !$throwExceptionOnInvalidIndex;
        $this->cacheItemPool = $cacheItemPool instanceof NullAdapter ? null : $cacheItemPool; // Replace the NullAdapter by the null value
    }