PreferencesModule
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 24
1
<?php namespace Anomaly\PreferencesModule;
2
3
use Anomaly\Streams\Platform\Addon\Module\Module;
4
5
/**
6
 * Class PreferencesModule
7
 *
8
 * @link          http://pyrocms.com/
9
 * @author        PyroCMS, Inc. <[email protected]>
10
 * @author        Ryan Thompson <[email protected]>
11
 */
12
class PreferencesModule extends Module
13
{
14
15
    /**
16
     * The module icon.
17
     *
18
     * @var string
19
     */
20
    protected $icon = 'adjust';
21
22
    /**
23
     * The module sections.
24
     *
25
     * @var array
26
     */
27
    protected $sections = [
28
        'system',
29
        'modules',
30
        'extensions',
31
        'field_types',
32
        'plugins',
33
    ];
34
35
}
36