mite-php-legacy/examples/53oop.php

13 lines
250 B
PHP

<?php require('../vendor/autoload.php');
/*
* Example: 5.3 OOP Anonymous Functions
*/
$app = new Mite(array('debug' => TRUE, 'index' => __FILE__));
$app->route('/', function() use($app) {
$app->view('views/index.tpl.php');
});
$app->run();