Child.php 419 B

12345678910111213141516171819202122232425
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Utility;
  4. class Child extends Base
  5. {
  6. public $hasBoolean = ['test'];
  7. public $listProperty = ['Two', 'Three'];
  8. public $assocProperty = [
  9. 'Green' => ['lime'],
  10. 'Orange',
  11. ];
  12. public $nestedProperty = [
  13. 'Red' => [
  14. 'apple' => 'gala',
  15. ],
  16. 'Green' => [
  17. 'citrus' => 'lime',
  18. ],
  19. ];
  20. }