You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigReader.php 314B

1234567891011121314151617
  1. <?php
  2. namespace Tests\Support\Libraries;
  3. /**
  4. * Class ConfigReader
  5. *
  6. * An extension of BaseConfig that prevents the constructor from
  7. * loading external values. Used to read actual local values from
  8. * a config file.
  9. */
  10. class ConfigReader extends \Config\App
  11. {
  12. public function __construct()
  13. {
  14. }
  15. }