Apps   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace ElfSundae\Apps\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @method static array urls()
9
 * @method static string root(string $app = '')
10
 * @method static string domain(string $app = '')
11
 * @method static string prefix(string $app = '')
12
 * @method static string|bool id()
13
 * @method static string|null idForUrl(string $url)
14
 * @method static static refreshId()
15
 * @method static string url(string $app = '', string $path = '', mixed $parameters = [])
16
 * @method static void routes(array $attributes = [])
17
 *
18
 * @see \ElfSundae\Apps\AppManager
19
 */
20
class Apps extends Facade
21
{
22
    /**
23
     * Get the registered name of the component.
24
     *
25
     * @return string
26
     */
27 4
    protected static function getFacadeAccessor()
28
    {
29 4
        return 'apps';
30
    }
31
}
32