mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
19 lines
352 B
PHP
19 lines
352 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
require __DIR__ . "/../vendor/autoload.php";
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
class PromisorPrivateImpl implements \Amp\Promisor {
|
|
use \Amp\PrivatePromisor;
|
|
}
|
|
class PromisorPublicImpl implements \Amp\Promisor, \Amp\Promise {
|
|
use \Amp\PublicPromisor;
|
|
}
|
|
class StructTestFixture {
|
|
use \Amp\Struct;
|
|
public $callback;
|
|
}
|