Merge "Handle invalid language code gracefully in Language::fetchLanguageNames"
[lhc/web/wiklou.git] / tests / phpunit / includes / ExternalStoreTest.php
index cd3364e..07c2957 100644 (file)
@@ -75,7 +75,10 @@ class ExternalStoreFOO {
                        return null;
                }
 
-               if ( $itemID !== false && is_array( $this->data[$cluster][$id] ) && isset( $this->data[$cluster][$id][$itemID] ) ) {
+               if ( $itemID !== false
+                       && is_array( $this->data[$cluster][$id] )
+                       && isset( $this->data[$cluster][$id][$itemID] )
+               ) {
                        return $this->data[$cluster][$id][$itemID];
                }