| Total Complexity | 2 | 
| Total Lines | 16 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 6 | final class ServiceFixture  | 
            ||
| 7 | { | 
            ||
| 8 | public $first;  | 
            ||
| 9 | public $second;  | 
            ||
| 10 | public $third;  | 
            ||
| 11 | |||
| 12 | public function __construct(int $first, \stdClass $second, ...$third)  | 
            ||
| 13 |     { | 
            ||
| 14 | $this->first = $first;  | 
            ||
| 15 | $this->second = $second;  | 
            ||
| 16 | $this->third = $third;  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 19 | public static function make(...$arguments): self  | 
            ||
| 22 | }  | 
            ||
| 23 | }  | 
            ||
| 24 |