Item.int.php 354 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Holds the PMA\DI\Item class
  5. *
  6. * @package PMA
  7. */
  8. namespace PMA\DI;
  9. /**
  10. * Interface Item
  11. *
  12. * @package PMA\DI
  13. */
  14. interface Item
  15. {
  16. /**
  17. * Get a value from the item
  18. *
  19. * @param array $params Parameters
  20. * @return mixed
  21. */
  22. public function get($params = array());
  23. }