| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Determiner |
||
| 12 | { |
||
| 13 | public static function listenUnauthorizedOwnerEventForLogger(): bool |
||
| 14 | { |
||
| 15 | return self::get('listeners.unauthorized-owner-logger', true); |
||
| 16 | } |
||
| 17 | |||
| 18 | public static function transformSecretNameToKebabCase(): bool |
||
| 19 | { |
||
| 20 | return self::get('authorizations.transform-secret-name-to-kebab-case', true); |
||
| 21 | } |
||
| 22 | |||
| 23 | private static function get(string $key, bool $default = false): bool |
||
| 26 | } |
||
| 27 | } |
||
| 28 |