123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace Aws;
- interface CommandInterface extends \ArrayAccess, \Countable, \IteratorAggregate
- {
-
- public function toArray();
-
- public function getName();
-
- public function hasParam($name);
-
- public function getHandlerList();
- }
|