| Total Complexity | 3 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait ManagesAccounts |
||
| 8 | { |
||
| 9 | use TransformsAccounts; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Get a list of of accounts. |
||
| 13 | * |
||
| 14 | * @throws \TestMonitor\DevOps\Exceptions\InvalidDataException |
||
| 15 | * |
||
| 16 | * @return \TestMonitor\DevOps\Resources\Account[] |
||
| 17 | */ |
||
| 18 | 7 | public function accounts() |
|
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | 12 | * Returns the profile of the authenticated user. |
|
| 39 | * |
||
| 40 | 12 | * @return \TestMonitor\DevOps\Resources\Profile |
|
| 41 | */ |
||
| 42 | 2 | public function myself() |
|
| 49 |