php-ipc/src/Key/KeyInterface.php

9 lines
131 B
PHP

<?php
namespace NoccyLabs\Ipc\Key;
interface KeyInterface
{
public function getKey():int;
public function __toString();
}