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

13 lines
252 B
PHP

<?php require(__DIR__ . '/../src/mite.php');
/*
* Example: 5.3 OOP Anonymous Functions
*/
$app = new Mite(['debug' => TRUE, 'index' => __FILE__]);
$app->route('/53oop.php', function() use($app) {
$app->view('index.tpl.php');
});
$app->run();