| 1 | <?php declare(strict_types=1); |
||
| 5 | final class PhpMethod |
||
| 6 | { |
||
| 7 | use SourceTrait; |
||
| 8 | |||
| 9 | /** @var string */ |
||
| 10 | private $name = ''; |
||
| 11 | |||
| 12 | /** @var bool */ |
||
| 13 | private $isStatic = false; |
||
| 14 | |||
| 15 | 8 | public function __construct(string $name, bool $isStatic, string $source) |
|
| 21 | |||
| 22 | 8 | public function getName(): string |
|
| 26 | |||
| 27 | public function isStatic(): bool |
||
| 31 | } |
||
| 32 |