Follow up r74753, removed pass-by-references and @ operator
[lhc/web/wiklou.git] / maintenance / tests / selenium / SimpleSeleniumConfig.php
1 <?php
2 class SimpleSeleniumConfig {
3
4 public static function getSettings(&$includeFiles, &$globalConfigs) {
5 $includes = array(
6 //files that needed to be included would go here
7 );
8 $configs = array(
9 'wgDefaultSkin' => 'chick'
10 );
11 $includeFiles = array_merge( $includeFiles, $includes );
12 $globalConfigs = array_merge( $globalConfigs, $configs);
13 return true;
14 }
15 }