engineering/vendor/guzzlehttp/command/src/ResultInterface.php
2023-11-09 14:09:52 +08:00

10 lines
221 B
PHP
Executable File

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