php-ipc/src/Key/KeyInterface.php

9 lines
131 B
PHP
Raw Normal View History

2018-04-15 14:41:46 +00:00
<?php
namespace NoccyLabs\Ipc\Key;
interface KeyInterface
{
public function getKey():int;
public function __toString();
}