Code Duplication    Length = 3-3 lines in 2 locations

src/Utils/FilesystemHelper.php 2 locations

@@ 198-200 (lines=3) @@
195
	 * @param string $dirName
196
	 */
197
	public function tripleMove($old, $new, $temp, $dirName){
198
		if ($this->fileExists($old . '/' . $dirName)){
199
			$this->move($old . '/' . $dirName, $temp . '/' . $dirName);
200
		}
201
		if ($this->fileExists($new . '/' . $dirName)){
202
			$this->move($new . '/' . $dirName, $old . '/' . $dirName);
203
		}
@@ 201-203 (lines=3) @@
198
		if ($this->fileExists($old . '/' . $dirName)){
199
			$this->move($old . '/' . $dirName, $temp . '/' . $dirName);
200
		}
201
		if ($this->fileExists($new . '/' . $dirName)){
202
			$this->move($new . '/' . $dirName, $old . '/' . $dirName);
203
		}
204
	}
205
206
}