Typer
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getData() 0 1 ?
getValue() 0 1 ?
1
<?php
2
3
namespace iMega\Formatter;
4
5
interface Typer
6
{
7
    public static function getData($value);
8
    public static function getValue($value);
9
}
10