1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00

Remove final from Observer and Subscriber

This commit is contained in:
Aaron Piotrowski 2016-07-19 11:58:20 -05:00
parent 5a06b1cdc1
commit 3e170639c3
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace Amp;
* }
* $result = $observer->getResult();
*/
final class Observer {
class Observer {
/**
* @var \Amp\Subscriber
*/

View File

@ -7,7 +7,7 @@ use Interop\Async\Awaitable;
/**
* Subscriber implementation returned from implementors of \Amp\Observable.
*/
final class Subscriber implements Awaitable {
class Subscriber implements Awaitable {
/**
* @var string
*/