Files
wiosna-dev_common-library/tests/Meritoo/Common/Tests/Utilities/Reflection/C.php
2017-08-29 22:51:31 +02:00

24 lines
374 B
PHP

<?php
namespace Meritoo\Common\Tests\Utilities\Reflection;
/**
* The C class.
* Used for testing the Reflection class.
*
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
* @copyright Meritoo.pl
*/
class C extends B
{
public function getPositive()
{
return true;
}
public function getNegative()
{
return false;
}
}