for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wikibase\EntityStore\Console;
use Symfony\Component\Console\Application;
/**
* @licence GPLv2+
* @author Thomas Pellissier Tanon
*/
class CliApplicationFactory {
public function newApplication() {
$application = new Application( 'WikibaseEntityStore' );
$application->add( new ImportJsonDumpCommand() );
$application->add( new ImportIncrementalXmlDumpCommand() );
return $application;
}