PHP Classes

File: vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php   Download  
File: vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Chatto PHP Websocket Chat System
Websocket based chat system using Ratchet library
Author: By
Last change:
Date: 3 years ago
Size: 309 bytes
 

Contents

Class file image Download
<?php

namespace Symfony\Component\Routing\Loader\Configurator;

return function (
RoutingConfigurator $routes) {
   
$add = $routes->collection('c_')
        ->
prefix('pub');

   
$add('root', '/');
   
$add('bar', '/bar');

   
$add->collection('pub_')
        ->
host('host')
        ->
add('buz', 'buz');
};