| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | protected function fromDevOpsTeam($team, string $projectId): Team |
||
| 36 | { |
||
| 37 | Validator::keysExists($team, ['id', 'name']); |
||
| 38 | |||
| 39 | return new Team([ |
||
| 40 | 'id' => $team['id'], |
||
| 41 | 'name' => $team['name'], |
||
| 42 | 'description' => $team['description'], |
||
| 43 | 'path' => "{$projectId}\\{$team['name']}", |
||
| 44 | ]); |
||
| 47 |