| 1 | <?php  | 
            ||
| 3 | namespace Dimsh\Models\Collections\Tests;  | 
            ||
| 4 | |||
| 5 | class TestBasicObject  | 
            ||
| 6 | { | 
            ||
| 7 | /**  | 
            ||
| 8 | * @var int  | 
            ||
| 9 | */  | 
            ||
| 10 | protected static $counter = 0;  | 
            ||
| 11 | |||
| 12 | public $public_property;  | 
            ||
| 13 | |||
| 14 | public static function increment()  | 
            ||
| 18 | |||
| 19 | public static function getCounterValue()  | 
            ||
| 23 | |||
| 24 | public function __construct()  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | * @return string  | 
            ||
| 31 | */  | 
            ||
| 32 | public function getMyHash()  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * @return int  | 
            ||
| 39 | */  | 
            ||
| 40 | public function getCounter()  | 
            ||
| 41 |     { | 
            ||
| 42 | return TestBasicObject::getCounterValue();  | 
            ||
| 43 | }  | 
            ||
| 45 |