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

Delete WatcherInterface.php

This commit is contained in:
Andrew Carter 2016-03-23 09:49:26 +00:00
parent 899e100349
commit 6d906eb887

View File

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