Completed
Branch master (e577bd)
by Grummfy
01:54
created
Category
src/ReadOnlyFallbackAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -192,13 +192,13 @@
 block discarded – undo
192 192
 		$inverseRef = [];
193 193
 		foreach ($tmpResult as $index => $mainContent)
194 194
 		{
195
-			$inverseRef[ $mainContent[ 'path' ] ] = $index;
195
+			$inverseRef[$mainContent['path']] = $index;
196 196
 		}
197 197
 
198 198
 		$fallbackContents = $this->_readOnlyAdapter->listContents($directory, $recursive);
199 199
 		foreach ($fallbackContents as $fallbackContent)
200 200
 		{
201
-			if (!isset($inverseRef[ $fallbackContent[ 'path' ] ]))
201
+			if (!isset($inverseRef[$fallbackContent['path']]))
202 202
 			{
203 203
 				$tmpResult[] = $fallbackContent;
204 204
 			}
Please login to merge, or discard this patch.