From 177e1511745711b4795f63034cb3e9da53b6b676 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 18 Oct 2016 23:10:58 -0700 Subject: [PATCH] Fix FileBackendStore IDEA warnings due to var reuse Change-Id: I1b667fb7e891053c7898a0c247745b4376061590 --- includes/libs/filebackend/FileBackendStore.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/libs/filebackend/FileBackendStore.php b/includes/libs/filebackend/FileBackendStore.php index b1b7652f10..bd2ce5ddfb 100644 --- a/includes/libs/filebackend/FileBackendStore.php +++ b/includes/libs/filebackend/FileBackendStore.php @@ -1098,9 +1098,9 @@ abstract class FileBackendStore extends FileBackend { // Build the list of paths involved $paths = []; - foreach ( $performOps as $op ) { - $paths = array_merge( $paths, $op->storagePathsRead() ); - $paths = array_merge( $paths, $op->storagePathsChanged() ); + foreach ( $performOps as $performOp ) { + $paths = array_merge( $paths, $performOp->storagePathsRead() ); + $paths = array_merge( $paths, $performOp->storagePathsChanged() ); } // Enlarge the cache to fit the stat entries of these files -- 2.20.1