Code Duplication    Length = 9-9 lines in 2 locations

lib/private/Repair/RepairMismatchFileCachePath.php 2 locations

@@ 204-212 (lines=9) @@
201
		}
202
	}
203
204
	private function countResultsToProcessParentIdWrongPath($storageNumericId = null) {
205
		$qb = $this->connection->getQueryBuilder();
206
		$qb->select($qb->createFunction('COUNT(*)'));
207
		$this->addQueryConditionsParentIdWrongPath($qb, $storageNumericId);
208
		$results = $qb->execute();
209
		$count = $results->fetchColumn(0);
210
		$results->closeCursor();
211
		return $count;
212
	}
213
214
	private function countResultsToProcessNonExistingParentIdEntry($storageNumericId = null) {
215
		$qb = $this->connection->getQueryBuilder();
@@ 214-222 (lines=9) @@
211
		return $count;
212
	}
213
214
	private function countResultsToProcessNonExistingParentIdEntry($storageNumericId = null) {
215
		$qb = $this->connection->getQueryBuilder();
216
		$qb->select($qb->createFunction('COUNT(*)'));
217
		$this->addQueryConditionsNonExistingParentIdEntry($qb, $storageNumericId);
218
		$results = $qb->execute();
219
		$count = $results->fetchColumn(0);
220
		$results->closeCursor();
221
		return $count;
222
	}
223
224
225
	/**