* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Context; /** * Common interface for context builders. * * @author Mathias Arlaud * @author Robin Chalas */ interface ContextBuilderInterface { /** * @param self|array $context */ public function withContext(self|array $context): static; /** * @return array */ public function toArray(): array; }