Completed
Push — develop ( 3b8b48...76311f )
by Nate
27:41 queued 12:43
created

Scorecard   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getLogFileName() 0 4 1
1
<?php
2
3
/**
4
 * @copyright  Copyright (c) Flipbox Digital Limited
5
 * @license    https://flipboxfactory.com/software/scorecard/license
6
 * @link       https://www.flipboxfactory.com/software/scorecard/
7
 */
8
9
namespace flipbox\craft\scorecard;
10
11
use craft\base\Plugin;
12
use flipbox\ember\modules\LoggerTrait;
13
14
/**
15
 * @author Flipbox Factory <[email protected]>
16
 * @since 1.0.0
17
 */
18
class Scorecard extends Plugin
19
{
20
    use LoggerTrait;
21
22
    /**
23
     * @return string
24
     */
25
    protected static function getLogFileName(): string
26
    {
27
        return 'scorecard';
28
    }
29
}
30