mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 17:41:50 +01:00
34 lines
586 B
PHP
34 lines
586 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\Common\Test\Utilities\Reflection;
|
|
|
|
/**
|
|
* The A class.
|
|
* Used for testing the Reflection class.
|
|
*
|
|
* @author Meritoo <github@meritoo.pl>
|
|
* @copyright Meritoo <http://www.meritoo.pl>
|
|
*/
|
|
class A
|
|
{
|
|
use E;
|
|
|
|
private $count = 1;
|
|
|
|
protected function lorem()
|
|
{
|
|
return 'ipsum';
|
|
}
|
|
|
|
protected function getCount()
|
|
{
|
|
return $this->count;
|
|
}
|
|
}
|