php-ipc/src/Key/KeyInterface.php

13 lines
199 B
PHP

<?php
namespace NoccyLabs\Ipc\Key;
interface KeyInterface
{
/**
* Get the integer key used for SysV ipc operations
*
* @return integer
*/
public function getKey():int;
}