summaryrefslogtreecommitdiff
path: root/vendor/chillerlan/php-settings-container/tests/TestContainer.php
blob: a35f75277a7548361e324387fdb9d63969441499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
 * Class TestContainer
 *
 * @filesource   TestContainer.php
 * @created      28.08.2018
 * @package      chillerlan\SettingsTest
 * @author       Smiley <[email protected]>
 * @copyright    2018 Smiley
 * @license      MIT
 */

namespace chillerlan\SettingsTest;

use chillerlan\Settings\SettingsContainerAbstract;

/**
 * @property $test1
 * @property $test2
 * @property $test3
 * @property $test4
 * @property $test5
 * @property $test6
 */
class TestContainer extends SettingsContainerAbstract{
	use TestOptionsTrait;

	private $test3 = 'what';
}