php-ipc/src/Key/KeyInterface.php

13 lines
199 B
PHP
Raw Normal View History

2018-04-15 14:41:46 +00:00
<?php
namespace NoccyLabs\Ipc\Key;
interface KeyInterface
{
2018-04-15 20:08:19 +00:00
/**
* Get the integer key used for SysV ipc operations
*
* @return integer
*/
2018-04-15 14:41:46 +00:00
public function getKey():int;
}