| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function newEntityIdLookup(): EntityIdLookup { |
||
| 32 | $labelTable = new TableQueryExecutor( $this->connection, $this->config->getLabelTableName() ); |
||
| 33 | $aliasesTable = new TableQueryExecutor( $this->connection, $this->config->getAliasesTableName() ); |
||
| 34 | |||
| 35 | return new IdLookup( $labelTable, $aliasesTable ); |
||
| 36 | } |
||
| 37 | |||
| 53 | } |