| 12345678910111213141516171819 |
- <?php
- namespace Elastica;
- /**
- * Interface for params.
- *
- *
- * @author Evgeniy Sokolov <ewgraf@gmail.com>
- */
- interface ArrayableInterface
- {
- /**
- * Converts the object to an array.
- *
- * @return array Object as array
- */
- public function toArray();
- }
|