Cases
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
1
<?php
2
namespace morphos;
3
4
interface Cases
5
{
6
    const NOMINATIVE = 'nominative';
7
    const GENITIVE = 'genitive';
8
    const GENETIVE = 'genitive';
9
    const DATIVE = 'dative';
10
    const ACCUSATIVE = 'accusative';
11
    const ABLATIVE = 'ablative';
12
    const PREPOSITIONAL = 'prepositional';
13
}
14