PHP Classes

File: includes/src/vendor/klein/klein/tests/Klein/Tests/routes/random.php

Recommend this page to a friend!
  Classes of Subin Siby   Lobby   includes/src/vendor/klein/klein/tests/Klein/Tests/routes/random.php   Download  
File: includes/src/vendor/klein/klein/tests/Klein/Tests/routes/random.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Lobby
Web OS to install and run Web applications
Author: By
Last change:
Date: 7 years ago
Size: 212 bytes
 

Contents

Class file image Download
<?php

$this
->respond(
   
'/?',
    function (
$request, $response, $app) {
        echo
'yup';
    }
);

$this->respond(
   
'/testing/?',
    function (
$request, $response, $app) {
        echo
'yup';
    }
);