except()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace BrenoRoosevelt;
5
6
/**
7
 * Returns a subset of the collection with elements that do not match given keys.
8
 * The keys are preserved
9
 *
10
 * @param array $items The collection
11
 * @param mixed ...$keys keys to be filtered
12
 * @return array
13
 */
14
function except(array $items, ...$keys): array
15
{
16
    return array_diff_key($items, array_flip($keys));
17
}
18