Code Duplication    Length = 3-3 lines in 3 locations

PHPDaemon/Clients/Mongo/Pool.php 3 locations

@@ 444-446 (lines=3) @@
441
			$p['where'] = [];
442
		}
443
444
		if (strpos($p['col'], '.') === false) {
445
			$p['col'] = $this->dbname . '.' . $p['col'];
446
		}
447
448
		$e = explode('.', $p['col'], 2);
449
@@ 689-691 (lines=3) @@
686
			$p['max'] = [];
687
		}
688
689
		if (strpos($p['col'], '.') === false) {
690
			$p['col'] = $this->dbname . '.' . $p['col'];
691
		}
692
693
		$e = explode('.', $p['col'], 2);
694
@@ 893-895 (lines=3) @@
890
			$p['key'] = '';
891
		}
892
893
		if (strpos($p['col'], '.') === false) {
894
			$p['col'] = $this->dbname . '.' . $p['col'];
895
		}
896
	}
897
898
	/**