| 1 | <?php declare(strict_types=1); |
||
| 10 | final class CommunityHealthCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $fullName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * CommunityHealthCommand constructor. |
||
| 19 | * @param string $fullName |
||
| 20 | */ |
||
| 21 | 1 | public function __construct($fullName) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | 1 | public function getFullName(): string |
|
| 33 | } |
||
| 34 |