TestInstanceConfig.php 388 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace TestApp\Config;
  3. use Cake\Core\InstanceConfigTrait;
  4. class TestInstanceConfig
  5. {
  6. use InstanceConfigTrait;
  7. /**
  8. * _defaultConfig
  9. *
  10. * Some default config
  11. *
  12. * @var array
  13. */
  14. protected $_defaultConfig = [
  15. 'some' => 'string',
  16. 'a' => [
  17. 'nested' => 'value',
  18. 'other' => 'value',
  19. ],
  20. ];
  21. }