Interface.php 261 B

123456789101112131415
  1. <?php
  2. /**
  3. * Interface for contexts
  4. *
  5. * setResource() is an optional method that if the context supports
  6. * will be set with the resource at construction time
  7. *
  8. */
  9. interface Zend_Tool_Project_Context_Interface
  10. {
  11. public function getName();
  12. }