Completed
Branch master (46ece2)
by Elf
01:32
created

Apps   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 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 1
    protected static function getFacadeAccessor()
28
    {
29 1
        return 'apps';
30
    }
31
}
32