Completed
Pull Request — master (#86)
by Scott
01:49
created

GenericLanguage::providesLanguages()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
namespace Povils\PHPMND;
3
4
class GenericLanguage extends Language
5
{
6
    public static function providesLanguages(): array
7
    {
8
        return [
9
            'all'
10
        ];
11
    }
12
13
    public function specialNumbers(): array
14
    {
15
        return [];
16
    }
17
}
18