Completed
Pull Request — master (#132)
by
unknown
02:04
created

Captcha   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 1 1
1
<?php
2
3
namespace Heimuya\Captcha\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @see \Heimuya\Captcha
9
 */
10
class Captcha extends Facade {
11
12
    /**
13
     * @return string
14
     */
15
    protected static function getFacadeAccessor() { return 'captcha'; }
16
17
}
18