| 1 | <?php |
||
| 8 | class ChildEntity extends ParentEntity |
||
| 9 | { |
||
| 10 | public $public; |
||
| 11 | protected $ownProperty; |
||
| 12 | |||
| 13 | public function childProp(): string |
||
| 17 | |||
| 18 | protected function childProtectedProp(): \stdClass |
||
| 22 | |||
| 23 | protected function childExampleObj1(): \Cycle\ORM\Promise\Tests\Declaration\Fixtures\Entity |
||
| 27 | |||
| 28 | protected function childExampleObj2(): EWC |
||
| 32 | |||
| 33 | protected function childExampleObj3(): EWC |
||
| 37 | } |