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

11 lines
222 B
PHP
Raw Normal View History

2023-07-15 10:16:32 +08:00
<?php
2023-07-17 09:56:51 +08:00
2023-07-15 10:16:32 +08:00
namespace GuzzleHttp\Command;
/**
* An array-like object that represents the result of executing a command.
*/
interface ResultInterface extends \ArrayAccess, \IteratorAggregate, \Countable, ToArrayInterface
{
}