Initial commit

This commit is contained in:
2018-04-15 16:41:46 +02:00
commit 86ff40274b
29 changed files with 1368 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace NoccyLabs\Ipc\Interop\Channel;
interface ChannelInterface
{
public function isOpen():bool;
public function receive();
public function send($data);
}