🏠 Root
/
home
/
artorgp
/
www
/
wp-content
/
plugins
/
wp-mail-smtp
/
vendor_prefixed
/
guzzlehttp
/
promises
/
src
/
Editing: PromisorInterface.php
<?php declare (strict_types=1); namespace WPMailSMTP\Vendor\GuzzleHttp\Promise; /** * Interface used with classes that return a promise. */ interface PromisorInterface { /** * Returns a promise. */ public function promise() : PromiseInterface; }
Save
Cancel