Completed
Push — master ( 43817e...e0572b )
by f
01:48
created

NumeralCreation   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getForms() 0 1 1
A getForm() 0 1 1
1
<?php
2
namespace morphos;
3
4
class NumeralCreation implements Cases {
5
    const MALE = 'm';
6
    const FEMALE = 'f';
7
    const NEUTER = 'n';
8
9
    public function getForms($number) {}
10
    public function getForm($number, $case) {}
11
}
12