Code Duplication    Length = 7-7 lines in 2 locations

core/Database.class.php 1 location

@@ 317-323 (lines=7) @@
314
		/**
315
		 * fonction qui détruit toutes les variables utilisées.
316
		 */
317
		private function unsetQueryBuilder() {
318
			$this->req_beginning;
319
			$this->champs = [];
320
			$this->value = [];
321
			$this->conditions = [];
322
			$this->table = [];
323
		}
324
	}

core/modules/Querybuilder.class.php 1 location

@@ 177-183 (lines=7) @@
174
		/**
175
		 * fonction qui détruit toutes les variables utilisées.
176
		 */
177
		private function unsetQueryBuilder() {
178
			$this->req_beginning;
179
			$this->champs = [];
180
			$this->value = [];
181
			$this->conditions = [];
182
			$this->table = [];
183
		}
184
	}