Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | final class NovaSearchServicesResult |
||
6 | { |
||
7 | use NovaMessageTrait; |
||
8 | |||
9 | /** |
||
10 | * Services |
||
11 | * |
||
12 | * @var NovaService[] |
||
13 | */ |
||
14 | public $services = []; |
||
15 | |||
16 | /** |
||
17 | * Add service. |
||
18 | * |
||
19 | * @param NovaService $service The nova service |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | 1 | public function addService(NovaService $service) |
|
28 |