| 
							
							<?php require('../vendor/autoload.php');
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							/*
 | 
						
						
						
						
							 | 
							
							 * Example: Using MITE as a base class
 | 
						
						
						
						
							 | 
							
							 */
 | 
						
						
						
						
							 | 
							
							class test extends Mite {
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							    function index()
 | 
						
						
						
						
							 | 
							
							    {
 | 
						
						
						
						
							 | 
							
							        $this->view('views\index.tpl.php');
 | 
						
						
						
						
							 | 
							
							    }
 | 
						
						
						
						
							 | 
							
							}
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							$app = new test(array('debug' => TRUE, 'index' => __FILE__));
 | 
						
						
						
						
							 | 
							
							$app->route('/', 'index');
 | 
						
						
						
						
							 | 
							
							$app->run(); |