denpamusic/php-levin

View on GitHub
src/Requests/PeerId.php

Summary

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

declare(strict_types=1);

namespace Denpa\Levin\Requests;

use Denpa\Levin;
use Denpa\Levin\Command;
use Denpa\Levin\Section\Section;

class PeerId extends Command implements RequestInterface
{
    /**
     * @return \Denpa\Levin\Section\Section
     */
    public function request(): Section
    {
        return Levin\section();
    }

    /**
     * @return \Denpa\Levin\Section\Section
     */
    public function response(): Section
    {
        return Levin\section([
            'my_id' => $this->my_id,
        ]);
    }

    /**
     * @return array
     */
    protected function defaultVars(): array
    {
        return [
            'my_id' => Levin\peer_id(),
        ];
    }

    /**
     * @return int
     */
    public function getCommandCode(): int
    {
        return self::P2P_COMMANDS_POOL_BASE + 6;
    }
}