| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| 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() |
|
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Returns the profile of the authenticated user. |
||
| 35 | * |
||
| 36 | * @return \TestMonitor\DevOps\Resources\Profile |
||
| 37 | */ |
||
| 38 | 12 | public function myself() |
|
| 45 |