관리-도구
편집 파일: PromisorInterface.php
<?php namespace GuzzleHttp\Promise; /** * Interface used with classes that return a promise. */ interface PromisorInterface { /** * Returns a promise. * * @return PromiseInterface */ public function promise(); }