mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 17:41:50 +01:00
31 lines
573 B
PHP
31 lines
573 B
PHP
<?php
|
|
|
|
/**
|
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Meritoo\Test\Common\Utilities\Reflection;
|
|
|
|
/**
|
|
* The H class.
|
|
* Used for testing the Reflection class.
|
|
*
|
|
* @author Meritoo <github@meritoo.pl>
|
|
* @copyright Meritoo <http://www.meritoo.pl>
|
|
*
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
class H
|
|
{
|
|
public const DOLOR = 'sit';
|
|
|
|
public const LOREM = 'ipsum';
|
|
|
|
public const MAX_USERS = 5;
|
|
|
|
public const MIN_USERS = 2;
|
|
}
|