1 | <?php |
||
19 | class ConnectionCheckerHelper { |
||
20 | |||
21 | /** |
||
22 | * Finds a statement with the given property ID. |
||
23 | * |
||
24 | * @param StatementList $statementList |
||
25 | * @param PropertyId $propertyId |
||
26 | * |
||
27 | * @return Statement|null |
||
28 | */ |
||
29 | public function findStatementWithProperty( |
||
40 | |||
41 | /** |
||
42 | * Finds a statement with the given property ID and entity ID value. |
||
43 | * |
||
44 | * @param StatementList $statementList |
||
45 | * @param PropertyId $propertyId |
||
46 | * @param EntityId $value |
||
47 | * |
||
48 | * @return Statement|null |
||
49 | */ |
||
50 | public function findStatementWithPropertyAndEntityIdValue( |
||
70 | |||
71 | /** |
||
72 | * Finds a statement with the given property ID and one of the given item ID snak values. |
||
73 | * |
||
74 | * @param StatementList $statementList |
||
75 | * @param PropertyId $propertyId |
||
76 | * @param ItemIdSnakValue[] $values |
||
77 | * |
||
78 | * @return Statement|null |
||
79 | */ |
||
80 | public function findStatementWithPropertyAndItemIdSnakValues( |
||
97 | |||
98 | } |
||
99 |