Describable.php 262 B

123456789101112131415161718
  1. <?php
  2. namespace GetOpt;
  3. /**
  4. * An object that can be described
  5. *
  6. * @package GetOpt
  7. */
  8. interface Describable
  9. {
  10. /**
  11. * Returns a human readable string representation of the object
  12. *
  13. * @return string
  14. */
  15. public function describe();
  16. }