Facade   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 4 1
1
<?php
2
/**
3
 * File copied from Waavi/Sanitizer https://github.com/waavi/sanitizer
4
 * Sanitization functionality to be customized within this project before a 1.0 release.
5
 */
6
7
namespace PerfectOblivion\Valid\Sanitizer\Laravel;
8
9
use Illuminate\Support\Facades\Facade as LaravelFacade;
10
11
class Facade extends LaravelFacade
12
{
13
    /**
14
     * Get the registered name of the component.
15
     *
16
     * @return string
17
     */
18
    protected static function getFacadeAccessor()
19
    {
20
        return 'sanitizer';
21
    }
22
}
23