1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-03 13:00:51 +02:00
ttrss/vendor/chillerlan/php-settings-container/tests/TestContainer.php
Andrew Dolgov 3fd7856543 * switch to composer for qrcode and otp dependencies
* move most OTP-related stuff into userhelper
* remove old phpqrcode and otphp libraries
2021-02-26 19:16:17 +03:00

30 lines
566 B
PHP

<?php
/**
* Class TestContainer
*
* @filesource TestContainer.php
* @created 28.08.2018
* @package chillerlan\SettingsTest
* @author Smiley <smiley@chillerlan.net>
* @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';
}