ToArrayInterface.php 245 B

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