mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 01:31:45 +01:00
First, initial commit
This commit is contained in:
23
tests/Meritoo/Common/Tests/Utilities/Reflection/C.php
Normal file
23
tests/Meritoo/Common/Tests/Utilities/Reflection/C.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user