File.php 485 B

123456789101112131415
  1. <?php defined('SYSPATH') OR die('No direct script access.');
  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) 2009-2012 Kohana Team
  10. * @license http://kohanaframework.org/license
  11. */
  12. class Kohana_Config_File extends Kohana_Config_File_Reader
  13. {
  14. // @see Kohana_Config_File_Reader
  15. }