flix-tech/avro-serde-php

View on GitHub
src/Objects/Schema/ComplexType.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace FlixTech\AvroSerializer\Objects\Schema;

use FlixTech\AvroSerializer\Objects\Definition;
use FlixTech\AvroSerializer\Objects\Schema;

abstract class ComplexType extends Schema
{
    /**
     * @var array<string, mixed>
     */
    private $attributes;

    /**
     * @var string
     */
    private $type;

    /**
     * @param array<string, mixed> $attributes
     */
    public function __construct(string $type, array $attributes = [])
    {
        $this->type = $type;
        $this->attributes = $attributes;
    }

    /**
     * @return array<mixed>
     */
    public function serialize(): array
    {
        $record = [
            'type' => $this->type,
        ];

        foreach ($this->attributes as $attributeName => $attributeValue) {
            if ($attributeValue instanceof Definition) {
                $record[$attributeName] = $attributeValue->serialize();

                continue;
            }

            $record[$attributeName] = $attributeValue;
        }

        return $record;
    }

    /**
     * @param mixed $value
     *
     * @return static
     */
    protected function attribute(string $name, $value): self
    {
        $schema = clone $this;
        $schema->attributes[$name] = $value;

        return $schema;
    }
}