Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / maintenance / cdb.php
index 5aaf01f..0870d6d 100644 (file)
  * @todo document
  * @ingroup Maintenance
  */
-use \Cdb\Exception as CdbException;
-use \Cdb\Reader as CdbReader;
 
-/** */
+use Cdb\Exception as CdbException;
+use Cdb\Reader as CdbReader;
+
 require_once __DIR__ . '/commandLine.inc';
 
 function cdbShowHelp( $command ) {
-       $commandList = array(
+       $commandList = [
                'load' => 'load a cdb file for reading',
                'get' => 'get a value for a key',
                'exit' => 'exit cdb',
                'quit' => 'exit cdb',
                'help' => 'help about a command',
-       );
+       ];
        if ( !$command ) {
                $command = 'fullhelp';
        }