DefaultProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
ccs 10
cts 10
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSwearWords() 0 13 1
1
<?php
2
3
namespace Monolol\Lolifiers\SwearWordsProviders;
4
5
use Monolol\Lolifiers\SwearWordsProvider;
6
7
class DefaultProvider implements SwearWordsProvider
8
{
9 4
    public function getSwearWords()
10
    {
11
        return array(
12 4
            'BITCH',
13 4
            'FUCK',
14 4
            'BASTARD',
15 4
            'DICK',
16 4
            'SHIT',
17 4
            'BOLLOCKS',
18 4
            'ASSHOLE',
19 4
            'CUNT',
20 4
        );
21
    }
22
}
23