None::isFiltered()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Crossjoin\Browscap\PropertyFilter;
5
6
/**
7
 * Class None
8
 *
9
 * @package Crossjoin\Browscap\PropertyFilter
10
 * @author Christoph Ziegenberg <[email protected]>
11
 * @link https://github.com/crossjoin/browscap
12
 */
13
class None implements PropertyFilterInterface
14
{
15
    /**
16
     * @inheritdoc
17
     */
18
    public function isFiltered(string $property) : bool
19
    {
20
        return false;
21
    }
22
23
    /**
24
     * @inheritdoc
25
     */
26
    public function getProperties() : array
27
    {
28
        return [];
29
    }
30
}
31