Completed
Push — master ( bc5cbf...29e0b0 )
by f
02:20
created

NamesDeclension::getCases()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
nc 1
dl 0
loc 1
c 0
b 0
f 0
cc 1
eloc 1
nop 2
rs 10
1
<?php
2
namespace morphos;
3
4
class NamesDeclension implements Cases {
5
	const MAN = 'm';
6
	const WOMAN = 'w';
7
8
	public function isMutable($name, $gender) {}
9
	public function getCases($name, $gender) {}
10
	public function getCase($name, $case, $gender) {}
11
}
12