Completed
Push — version-4 ( 97dbd3...cbf107 )
by
unknown
02:04
created

Notifynder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
3
namespace Fenos\Notifynder\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
class Notifynder extends Facade
8
{
9
    protected static function getFacadeAccessor()
10
    {
11
        return 'notifynder';
12
    }
13
}