data_center/vendor/guzzlehttp/command/src/ResultInterface.php

10 lines
221 B
PHP
Raw Normal View History

2023-09-18 09:11:13 +08:00
<?php
namespace GuzzleHttp\Command;
/**
* An array-like object that represents the result of executing a command.
*/
interface ResultInterface extends \ArrayAccess, \IteratorAggregate, \Countable, ToArrayInterface
{
}