Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

2 lat temu
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. }