Completed
Push — develop ( 879470...a4a647 )
by Nate
16:22 queued 01:04
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\craft\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
     * The module category
24
     *
25
     * @var string
26
     */
27
    protected static $category = 'scorecard';
28
}
29