EnvSecurityFacade::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
/*
3
 * This file is part of laravel-env-security.
4
 *
5
 *  (c) Signature Tech Studio, Inc <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE.md
8
 * file that was distributed with this source code.
9
 */
10
11
namespace STS\EnvSecurity;
12
13
use Illuminate\Support\Facades\Facade;
14
15
/**
16
 * Class Profile.
17
 *
18
 *
19
 * @method static EnvSecurityManager factory(string $keyId, array $config = [])
20
 * @method static EnvSecurityManager encrypt($plaintext, $serialize = true)
21
 * @method static EnvSecurityManager decrypt($plaintext, $serialize = true)
22
 * @method static EnvSecurityManager resolveEnvironmentUsing($callback)
23
 * @method static EnvSecurityManager resolveEnvironment()
24
 */
25
class EnvSecurityFacade extends Facade
26
{
27
    protected static function getFacadeAccessor()
28
    {
29
        return 'sts.env-security';
30
    }
31
}
32