Completed
Push — master ( 18bbe5...4b1809 )
by f
01:51
created

BasePluralization::getCases()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
namespace morphos;
3
4
abstract class BasePluralization
5
{
6
    public static function pluralize($word, $count = 2)
7
    {
8
    }
9
10
    public static function getCase($word, $case, $animateness = false)
11
    {
12
    }
13
14
    public static function getCases($word, $animateness = false)
15
    {
16
    }
17
}
18