flix-tech/avro-serde-php

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

Summary

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

declare(strict_types=1);

namespace FlixTech\AvroSerializer\Objects\Schema;

class BytesType extends PrimitiveType
{
    public function __construct()
    {
        parent::__construct(TypeName::BYTES);
    }
}