Improved quality of docblock comments

This commit is contained in:
2018-04-15 22:08:19 +02:00
parent 20b6f1d42c
commit 31634c5054
9 changed files with 132 additions and 7 deletions

View File

@ -4,6 +4,10 @@ namespace NoccyLabs\Ipc\Key;
interface KeyInterface
{
/**
* Get the integer key used for SysV ipc operations
*
* @return integer
*/
public function getKey():int;
public function __toString();
}