ServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 14
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A plugins() 0 6 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Spires\Plugins\BangMessage;
5
6
class ServiceProvider extends \Spires\Core\ServiceProvider
7
{
8
    /**
9
     * Plugins provided.
10
     *
11
     * @return string[]
12
     */
13
    public function plugins()
14
    {
15
        return [
16
            Plugin::class
17
        ];
18
    }
19
}
20