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