Completed
Push — master ( b25c9d...3773b3 )
by Nate
23:52 queued 08:54
created

Scorecard::getLogFileName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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