All checks were successful
		
		
	
	rvr-nextgen/pipeline/pr-master This commit looks good
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			469 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->add(new RVR\Cli\AddOAuthClientCommand());
 | 
						|
$app->add(new RVR\Cli\AddOAuthRedirectUriCommand());
 | 
						|
$app->add(new RVR\Cli\RemoveOAuthRedirectUriCommand());
 | 
						|
 | 
						|
$app->run();
 |