Completed
Pull Request — master (#3)
by Clayton
06:29
created

Facade::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace PerfectOblivion\Valid\Sanitizer\Laravel;
4
5
use Illuminate\Support\Facades\Facade as LaravelFacade;
6
7
/**
8
 * File copied from Waavi/Sanitizer https://github.com/waavi/sanitizer
9
 * Sanitization functionality to be customized within this project before a 1.0 release.
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