 1ac0f42a58
			
		
	
	1ac0f42a58
	
	
	
		
			
			Travis config update Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
		
			
				
	
	
		
			18 lines
		
	
	
		
			412 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			412 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Symfony\Component\Routing\Loader\Configurator;
 | |
| 
 | |
| return function (RoutingConfigurator $routes) {
 | |
|     $routes
 | |
|         ->collection()
 | |
|         ->prefix(array('en' => '/glish'))
 | |
|         ->add('foo', '/foo')
 | |
|         ->add('bar', array('en' => '/bar'));
 | |
| 
 | |
|     $routes
 | |
|         ->add('baz', array('en' => '/baz'));
 | |
| 
 | |
|     $routes->import('php_dsl_sub_i18n.php')
 | |
|         ->prefix(array('fr' => '/ench'));
 | |
| };
 |