| 1 | <?php |
||
| 6 | abstract class IncompleteAbstractTestClass implements TestInterface |
||
| 7 | { |
||
| 8 | public $public; |
||
| 9 | |||
| 10 | protected $protected; |
||
| 11 | |||
| 12 | private $private; |
||
| 13 | |||
| 14 | public $isTrue; |
||
| 15 | |||
| 16 | public static $getInt; |
||
| 17 | |||
| 18 | public function isTrue(): bool |
||
| 22 | |||
| 23 | public function getInt(): int |
||
| 27 | |||
| 28 | public function getSelf(): TestInterface |
||
| 32 | |||
| 33 | public function getCallable(): callable |
||
| 38 | |||
| 39 | public function & getReference(): array |
||
| 43 | |||
| 44 | public function withArgument(int $argument): int |
||
| 48 | |||
| 49 | public function withArguments( |
||
| 60 | |||
| 61 | public function throwException() |
||
| 64 | |||
| 65 | abstract public function abstractMethod(); |
||
| 66 | } |
||
| 67 |