kodekeep/binary

View on GitHub
src/Buffer/Writer/Concerns/Hex.php

Summary

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

declare(strict_types=1);

/**
 * Copyright (c) Konceiver Oy <legal@konceiver.dev>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Konceiver\Binary\Buffer\Writer\Concerns;

use Konceiver\Binary\Hex\Writer;

trait Hex
{
    /**
     * Write the given hex value as binary with a high nibble.
     *
     * @param string $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeHex(string $value): self
    {
        $this->bytes .= Writer::high($value, strlen($value));

        return $this;
    }

    /**
     * Write the given hex value as binary.
     *
     * @param string $value
     *
     * @return \Konceiver\Binary\Buffer\Writer\Buffer
     */
    public function writeHexBytes(string $value): self
    {
        $this->bytes .= hex2bin($value);

        return $this;
    }
}