<?php 
 
/** 
 * This file is part of the Zest Framework. 
 * 
 * @author Muhammad Umer Farooq (Malik) <[email protected]> 
 * 
 * @link https://github.com/zestframework/Zest_Framework 
 * 
 * For the full copyright and license information, please view the LICENSE 
 *  file that was distributed with this source code. 
 * @since 1.9.7 
 * 
 * @license MIT 
 */ 
use Zest\http\Request; 
 
//Dispatch the request 
$com->dispatch(new Request()); 
 
 |