Completed
Push — 2.1.x ( 7ab7e8 )
by f
23:20
created

NamesDeclension   A

Complexity

Total Complexity 3

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 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A hasForms() 0 1 1
A getForms() 0 1 1
A getForm() 0 1 1
1
<?php
2
namespace morphos;
3
4
class NamesDeclension implements Cases {
5
	const MAN = 'm';
6
	const WOMAN = 'w';
7
8
	public function hasForms($name, $gender) {}
9
	public function getForms($name, $gender) {}
10
	public function getForm($name, $form, $gender) {}
11
}
12