1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 09:57:51 +01:00

Create WatcherInterface.php

This commit is contained in:
Andrew Carter 2016-02-17 15:19:51 +00:00
parent 09a4083fe1
commit 427386ad73

21
src/WatcherInterface.php Normal file
View File

@ -0,0 +1,21 @@
<?php
namespace Interop\Async\EventLoop;
interface WatcherInterface
{
/**
* @return void
*/
public function enable();
/**
* @return void
*/
public function disable();
/**
* @return void
*/
public function cancel();
}