| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ResourceNames |
||
| 6 | { |
||
| 7 | public const CONTACT = 'contacts'; |
||
| 8 | public const PRODUCT = 'products'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Build the endpoint string from array or string parts. |
||
| 12 | * |
||
| 13 | * @param mixed ...$endpoints |
||
| 14 | * |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | 11 | public static function buildEndpoint(...$endpoints): string |
|
| 38 |