mirror of
https://github.com/danog/amp.git
synced 2024-12-12 01:19:46 +01:00
13 lines
256 B
PHP
13 lines
256 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Test;
|
||
|
|
||
|
require __DIR__ . "/../vendor/autoload.php";
|
||
|
|
||
|
class PromisorPrivateImpl implements \Amp\Promisor {
|
||
|
use \Amp\PrivatePromisor;
|
||
|
}
|
||
|
class PromisorPublicImpl implements \Amp\Promisor, \Amp\Promise {
|
||
|
use \Amp\PublicPromisor;
|
||
|
}
|