Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<?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\Serializer\Context\Encoder;
use Symfony\Component\Serializer\Context\ContextBuilderInterface;
use Symfony\Component\Serializer\Context\ContextBuilderTrait;
use Symfony\Component\Serializer\Encoder\JsonDecode;
use Symfony\Component\Serializer\Encoder\JsonEncode;
/**
* A helper providing autocompletion for available JsonEncoder options.
*
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
*/
final class JsonEncoderContextBuilder implements ContextBuilderInterface
{
use ContextBuilderTrait;
/**
* Configures the json_encode flags bitmask.
*
* @see https://php.net/json.constants
*
* @param positive-int|null $options
*/
public function withEncodeOptions(?int $options): static
{
return $this->with(JsonEncode::OPTIONS, $options);
}
/**
* Configures the json_decode flags bitmask.
*
* @see https://php.net/json.constants
*
* @param positive-int|null $options
*/
public function withDecodeOptions(?int $options): static
{
return $this->with(JsonDecode::OPTIONS, $options);
}
/**
* Configures whether decoded objects will be given as
* associative arrays or as nested stdClass.
*/
public function withAssociative(?bool $associative): static
{
return $this->with(JsonDecode::ASSOCIATIVE, $associative);
}
/**
* Configures the maximum recursion depth.
*
* Must be strictly positive.
*
* @param positive-int|null $recursionDepth
*/
public function withRecursionDepth(?int $recursionDepth): static
{
return $this->with(JsonDecode::RECURSION_DEPTH, $recursionDepth);
}
}