1: <?php
2:
3: namespace Guzzle\Common;
4:
5: /**
6: * An object that can be represented as an array
7: */
8: interface ToArrayInterface
9: {
10: /**
11: * Get the array representation of an object
12: *
13: * @return array
14: */
15: public function toArray();
16: }
17: