| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | trait Grantable |
||
| 22 | { |
||
| 23 | use Model; |
||
| 24 | |||
| 25 | 52 | public function getSecretName(): string |
|
| 26 | { |
||
| 27 | 52 | return $this->secret_name; |
|
| 28 | } |
||
| 29 | |||
| 30 | 34 | public function getIdentificationKey(): string |
|
| 31 | { |
||
| 32 | 34 | return (string) $this->getKey(); |
|
| 33 | } |
||
| 34 | |||
| 35 | 83 | public static function bootGrantable(): void |
|
| 38 | 83 | } |
|
| 39 | } |
||
| 40 |