Concord   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 2
c 1
b 0
f 1
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * Contains the Concord facade class.
7
 *
8
 * @copyright   Copyright (c) 2016 Attila Fulop
9
 * @author      Attila Fulop
10
 * @license     MIT
11
 * @since       2016-10-30
12
 *
13
 */
14
15
namespace Konekt\Concord\Facades;
16
17
use Illuminate\Support\Facades\Facade;
18
use Konekt\Concord\Hooks\HookEvent;
19
20
/**
21
 * @method static void hookInto(HookEvent $event, callable $callback, string|array $filter = null)
22
 */
23
class Concord extends Facade
24
{
25
    /**
26
     * Get the registered name of the component.
27
     *
28
     * @return string
29
     */
30
    protected static function getFacadeAccessor()
31
    {
32
        return 'concord';
33
    }
34
}
35