1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 09:29:45 +01:00
amp/lib/Deferred.php

10 lines
225 B
PHP
Raw Normal View History

2015-05-19 06:21:33 +02:00
<?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; }
}