laudis-technologies/neo4j-php-client

View on GitHub
src/Types/Time.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * This file is part of the Neo4j PHP Client and Driver package.
 *
 * (c) Nagels <https://nagels.tech>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Laudis\Neo4j\Types;

use Bolt\protocol\IStructure;
use Laudis\Neo4j\Contracts\BoltConvertibleInterface;

/**
 * A time object represented in seconds since the unix epoch.
 *
 * @psalm-immutable
 *
 * @extends AbstractPropertyObject<float, float>
 */
final class Time extends AbstractPropertyObject implements BoltConvertibleInterface
{
    public function __construct(
        private readonly int $nanoSeconds,
        private readonly int $tzOffsetSeconds
    ) {}

    /**
     * @return array{nanoSeconds: int, tzOffsetSeconds: int}
     */
    public function toArray(): array
    {
        return ['nanoSeconds' => $this->nanoSeconds, 'tzOffsetSeconds' => $this->tzOffsetSeconds];
    }

    public function getTzOffsetSeconds(): int
    {
        return $this->tzOffsetSeconds;
    }

    public function getNanoSeconds(): int
    {
        return $this->nanoSeconds;
    }

    public function getProperties(): CypherMap
    {
        return new CypherMap($this);
    }

    public function convertToBolt(): IStructure
    {
        return new \Bolt\protocol\v1\structures\Time($this->getNanoSeconds(), $this->getTzOffsetSeconds());
    }
}