Reducer
last analyzed

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 6
ccs 0
cts 0
cp 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
init() 0 1 ?
step() 0 1 ?
complete() 0 1 ?
1
<?php
2
3
/*
4
 * This file is part of the Symfony package.
5
 *
6
 * (c) Arnaud LEMAIRE  <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Fp\Reducer;
13
14
interface Reducer
15
{
16
    public function init();
17
    public function step($result, $current);
18
    public function complete($result);
19
}
20