master
<?php declare(strict_types=1); namespace FlixTech\AvroSerializer\Objects\Schema; class TimestampMicrosType extends LogicalType { public function __construct() { parent::__construct(TypeName::TIMESTAMP_MICROS, TypeName::LONG); } }