TestContainer.php 497 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Class TestContainer
  4. *
  5. * @created 28.08.2018
  6. * @author Smiley <smiley@chillerlan.net>
  7. * @copyright 2018 Smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\SettingsTest;
  11. use chillerlan\Settings\SettingsContainerAbstract;
  12. /**
  13. * @property $test1
  14. * @property $test2
  15. * @property $test3
  16. * @property $test4
  17. * @property $test5
  18. * @property $test6
  19. */
  20. class TestContainer extends SettingsContainerAbstract{
  21. use TestOptionsTrait;
  22. private string $test3 = 'what';
  23. }