File.php 414 B

123456789101112131415
  1. <?php
  2. /**
  3. * File-based configuration reader. Multiple configuration directories can be
  4. * used by attaching multiple instances of this class to [Config].
  5. *
  6. * @package Kohana
  7. * @category Configuration
  8. * @author Kohana Team
  9. * @copyright (c) Kohana Team
  10. * @license https://koseven.ga/LICENSE.md
  11. */
  12. class Kohana_Config_File extends Kohana_Config_File_Reader
  13. {
  14. // @see Kohana_Config_File_Reader
  15. }