mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 01:31:45 +01:00
21 lines
307 B
PHP
21 lines
307 B
PHP
<?php
|
|
|
|
namespace Meritoo\Common\Tests\Utilities\Reflection;
|
|
|
|
/**
|
|
* The A class.
|
|
* Used for testing the Reflection class.
|
|
*
|
|
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
|
|
* @copyright Meritoo.pl
|
|
*/
|
|
class A
|
|
{
|
|
use E;
|
|
|
|
protected function lorem()
|
|
{
|
|
return 'ipsum';
|
|
}
|
|
}
|