Reader.php 527 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Interface for config readers
  4. *
  5. * @package KO7
  6. * @category Configuration
  7. *
  8. * @copyright (c) 2007-2016 Kohana Team
  9. * @copyright (c) since 2016 Koseven Team
  10. * @license https://koseven.dev/LICENSE
  11. */
  12. interface KO7_Config_Reader extends KO7_Config_Source
  13. {
  14. /**
  15. * Tries to load the specified configuration group
  16. *
  17. * Returns FALSE if group does not exist or an array if it does
  18. *
  19. * @param string $group Configuration group
  20. * @return boolean|array
  21. */
  22. public function load($group);
  23. }