Files
wiosna-dev_common-library/tests/Utilities/Reflection/A.php
2022-02-12 14:46:47 +01:00

37 lines
620 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 A class.
* Used for testing the Reflection class.
*
* @author Meritoo <github@meritoo.pl>
* @copyright Meritoo <http://www.meritoo.pl>
*
* @internal
* @coversNothing
*/
class A
{
use E;
private $count = 1;
protected function getCount()
{
return $this->count;
}
protected function lorem()
{
return 'ipsum';
}
}