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.
|
- <?php
-
- namespace Tests\Support\Libraries;
-
- /**
- * Class ConfigReader
- *
- * An extension of BaseConfig that prevents the constructor from
- * loading external values. Used to read actual local values from
- * a config file.
- */
- class ConfigReader extends \Config\App
- {
- public function __construct()
- {
- }
- }
|