| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class PropertySetStatementFilter implements StatementFilter { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @since 3.3 |
||
| 21 | */ |
||
| 22 | public const FILTER_TYPE = 'propertySet'; |
||
| 23 | |||
| 24 | 9 | /** |
|
| 25 | 9 | * @var string[] |
|
| 26 | 9 | */ |
|
| 27 | private $propertyIds; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string[]|string $propertyIds One or more property id serializations. |
||
| 31 | */ |
||
| 32 | public function __construct( $propertyIds ) { |
||
| 33 | $this->propertyIds = (array)$propertyIds; |
||
| 34 | } |
||
| 35 | 9 | ||
| 36 | 9 | /** |
|
| 37 | 9 | * @see StatementFilter::statementMatches |
|
| 38 | * |
||
| 39 | * @param Statement $statement |
||
| 40 | * |
||
| 41 | * @return bool |
||
| 42 | */ |
||
| 43 | public function statementMatches( Statement $statement ) { |
||
| 46 | } |
||
| 47 | |||
| 49 |