| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class EncryptionFacade extends \Illuminate\Support\Facades\Facade |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Get the registered name of the component. |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 86 | public static function getFacadeAccessor() |
|
| 29 | { |
||
| 30 | 86 | return 'DatabaseEncryption'; |
|
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get the singleton of EncryptionHelper. |
||
| 35 | * |
||
| 36 | * @return EncryptionHelper |
||
| 37 | */ |
||
| 38 | 28 | public static function getInstance() |
|
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Handle dynamic, static calls to the object. |
||
| 45 | * |
||
| 46 | * @param string $method |
||
| 47 | * @param array $args |
||
| 48 | * |
||
| 49 | * @return mixed |
||
| 50 | * @throws \RuntimeException |
||
| 51 | */ |
||
| 52 | 23 | public static function __callStatic($method, $args) |
|
| 62 |