mirror of
https://github.com/danog/amp.git
synced 2024-12-12 09:29:45 +01:00
10 lines
225 B
PHP
10 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp;
|
||
|
|
||
|
if (!defined("AMP_DEBUG") || \AMP_DEBUG) {
|
||
|
final class Deferred implements Promisor { use PrivatePromisor; }
|
||
|
} else {
|
||
|
final class Deferred implements Promisor, Promise { use PublicPromisor; }
|
||
|
}
|