phpOMS/tests/Utils/TestUtilsClass.php
2024-01-26 22:54:00 +00:00

27 lines
349 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Utils;
class TestUtilsClass
{
private $a = 1;
protected $b = 2;
public $c = 3;
public $d = '4';
}