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

Filesystem::getFacadeClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
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