sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							847 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							847 B
						
					
					
				| <?php | |
| 
 | |
| namespace Symfony\Component\Routing\Loader\Configurator; | |
| 
 | |
| return new class() { | |
|     public function __invoke(RoutingConfigurator $routes) | |
|     { | |
|         $routes | |
|             ->collection() | |
|             ->add('foo', '/foo') | |
|             ->condition('abc') | |
|             ->options(array('utf8' => true)) | |
|             ->add('buz', 'zub') | |
|             ->controller('foo:act'); | |
| 
 | |
|         $routes->import('php_dsl_sub.php') | |
|             ->prefix('/sub') | |
|             ->requirements(array('id' => '\d+')); | |
| 
 | |
|         $routes->import('php_dsl_sub.php') | |
|             ->namePrefix('z_') | |
|             ->prefix('/zub'); | |
| 
 | |
|         $routes->import('php_dsl_sub_root.php') | |
|             ->prefix('/bus', false); | |
| 
 | |
|         $routes->add('ouf', '/ouf') | |
|             ->schemes(array('https')) | |
|             ->methods(array('GET')) | |
|             ->defaults(array('id' => 0)); | |
|     } | |
| };
 | |
| 
 |