| Total Complexity | 3 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | class ObtainCommand  | 
            ||
| 10 | { | 
            ||
| 11 | /** @var string */  | 
            ||
| 12 | private $rfc;  | 
            ||
| 13 | |||
| 14 | 16 | public function __construct(string $rfc)  | 
            |
| 15 |     { | 
            ||
| 16 | 16 |         if ('' === $rfc) { | 
            |
| 17 | 1 |             throw new InvalidArgumentException('Invalid RFC, cannot be empty'); | 
            |
| 18 | }  | 
            ||
| 19 | |||
| 20 | 15 | $this->rfc = $rfc;  | 
            |
| 21 | }  | 
            ||
| 22 | |||
| 23 | 15 | public function rfc(): string  | 
            |
| 26 | }  | 
            ||
| 27 | }  | 
            ||
| 28 |