iterable_keys()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 2
nc 2
nop 1
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Improved;
6
7
/**
8
 * Use the keys as values.
9
 *
10
 * @param iterable $iterable
11
 * @return \Generator
12
 */
13 8
function iterable_keys(iterable $iterable): \Generator
0 ignored issues
show
introduced by
Function Improved\iterable_keys() has parameter $iterable with no value type specified in iterable type iterable.
Loading history...
introduced by
Function Improved\iterable_keys() return type has no value type specified in iterable type Generator.
Loading history...
14
{
15 7
    foreach ($iterable as $key => $value) {
16 6
        yield $key;
17
    }
18
}
19