Completed
Push — 6.0 ( d2638c...be0b6e )
by yun
04:29
created

Filesystem   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeClass() 0 3 1
1
<?php
2
// +----------------------------------------------------------------------
3
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
4
// +----------------------------------------------------------------------
5
// | Copyright (c) 2006~2019 http://thinkphp.cn All rights reserved.
6
// +----------------------------------------------------------------------
7
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
8
// +----------------------------------------------------------------------
9
// | Author: yunwuxin <[email protected]>
10
// +----------------------------------------------------------------------
11
namespace think\facade;
12
13
use think\Facade;
14
15
/**
16
 * Class Filesystem
17
 * @package think\facade
0 ignored issues
show
Coding Style introduced by
Package name "think\facade" is not valid; consider "Thinkfacade" instead
Loading history...
18
 * @mixin \think\Filesystem
19
 */
20
class Filesystem extends Facade
21
{
22
    protected static function getFacadeClass()
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function getFacadeClass()
Loading history...
23
    {
24
        return 'filesystem';
25
    }
26
}
27