Passed
Push — master ( e83f7b...d953ef )
by Arkadiusz
03:28
created

Distance

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
distance() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\Math;
6
7
interface Distance
8
{
9
    /**
10
     * @param array $a
11
     * @param array $b
12
     */
13
    public function distance(array $a, array $b): float;
0 ignored issues
show
Coding Style Best Practice introduced by
Please use __construct() instead of a PHP4-style constructor that is named after the class.
Loading history...
14
}
15