1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Observable.php

13 lines
181 B
PHP
Raw Normal View History

2016-05-24 18:47:14 +02:00
<?php
namespace Amp;
2016-05-27 01:20:05 +02:00
interface Observable {
2016-05-24 18:47:14 +02:00
/**
2016-05-27 01:20:05 +02:00
* Returns an observer of the observable.
*
* @return \Amp\Observer
2016-05-24 18:47:14 +02:00
*/
2016-05-27 01:20:05 +02:00
public function getObserver();
2016-05-24 18:47:14 +02:00
}