Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace WikibaseQuality\ConstraintReport;
4
5use Wikibase\DataModel\Entity\NumericPropertyId;
6
7/**
8 * @license GPL-2.0-or-later
9 */
10interface ConstraintLookup {
11
12    /**
13     * @param NumericPropertyId $propertyId
14     *
15     * @return Constraint[]
16     */
17    public function queryConstraintsForProperty( NumericPropertyId $propertyId );
18
19}