Files
jianbing/vendor/guzzlehttp/command/src/ResultInterface.php
2025-05-12 15:45:02 +08:00

11 lines
222 B
PHP

<?php
namespace GuzzleHttp\Command;
/**
* An array-like object that represents the result of executing a command.
*/
interface ResultInterface extends \ArrayAccess, \IteratorAggregate, \Countable, ToArrayInterface
{
}