Some checks failed
		
		
	
	rvr-nextgen/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			312 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			312 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
require 'app.php';
 | 
						|
 | 
						|
$app = new Symfony\Component\Console\Application('RVR Console', '');
 | 
						|
 | 
						|
$app->add(new RVR\Cli\MigrateDatabaseCommand());
 | 
						|
$app->add(new RVR\Cli\AddUserCommand());
 | 
						|
$app->add(new RVR\Cli\LinkViewCommand());
 | 
						|
$app->add(new RVR\Cli\MaintainDatabaseCommand());
 | 
						|
 | 
						|
$app->run();
 |