123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace GuzzleHttp\Command;
- use GuzzleHttp\HandlerStack;
- interface CommandInterface extends \ArrayAccess, \IteratorAggregate, \Countable, ToArrayInterface
- {
-
- public function getHandlerStack();
-
- public function getName();
-
- public function hasParam($name);
- }
|