![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/vendor/symfony/serializer/Annotation/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Annotation; use Symfony\Component\Serializer\Exception\InvalidArgumentException; /** * Annotation class for @Context(). * * @Annotation * @NamedArgumentConstructor * @Target({"PROPERTY", "METHOD"}) * * @author Maxime Steinhausser <[email protected]> */ #[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] final class Context { private $context; private $normalizationContext; private $denormalizationContext; private $groups; /** * @param string|string[] $groups * * @throws InvalidArgumentException */ public function __construct(array $options = [], array $context = [], array $normalizationContext = [], array $denormalizationContext = [], $groups = []) { if (!$context) { if (!array_intersect(array_keys($options), ['normalizationContext', 'groups', 'context', 'value', 'denormalizationContext'])) { // gracefully supports context as first, unnamed attribute argument if it cannot be confused with Doctrine-style options $context = $options; } else { trigger_deprecation('symfony/serializer', '5.3', 'Passing an array of properties as first argument to "%s" is deprecated. Use named arguments instead.', __METHOD__); // If at least one of the options match, it's likely to be Doctrine-style options. Search for the context inside: $context = $options['value'] ?? $options['context'] ?? []; } } if (!\is_string($groups) && !\is_array($groups)) { throw new \TypeError(sprintf('"%s": Expected parameter $groups to be a string or an array of strings, got "%s".', __METHOD__, get_debug_type($groups))); } $normalizationContext = $options['normalizationContext'] ?? $normalizationContext; $denormalizationContext = $options['denormalizationContext'] ?? $denormalizationContext; foreach (compact(['context', 'normalizationContext', 'denormalizationContext']) as $key => $value) { if (!\is_array($value)) { throw new InvalidArgumentException(sprintf('Option "%s" of annotation "%s" must be an array.', $key, static::class)); } } if (!$context && !$normalizationContext && !$denormalizationContext) { throw new InvalidArgumentException(sprintf('At least one of the "context", "normalizationContext", or "denormalizationContext" options of annotation "%s" must be provided as a non-empty array.', static::class)); } $groups = (array) ($options['groups'] ?? $groups); foreach ($groups as $group) { if (!\is_string($group)) { throw new InvalidArgumentException(sprintf('Parameter "groups" of annotation "%s" must be a string or an array of strings. Got "%s".', static::class, get_debug_type($group))); } } $this->context = $context; $this->normalizationContext = $normalizationContext; $this->denormalizationContext = $denormalizationContext; $this->groups = $groups; } public function getContext(): array { return $this->context; } public function getNormalizationContext(): array { return $this->normalizationContext; } public function getDenormalizationContext(): array { return $this->denormalizationContext; } public function getGroups(): array { return $this->groups; } }