<?php
/**
 * MiniMVC
 *
 * Convention-based micro-framework for PHP
 *
 * @package		miniMVC
 * @author 		Timothy J. Warren
 * @copyright	Copyright (c) 2011 - 2012
 * @link 		https://github.com/timw4mail/miniMVC
 * @license 	http://philsturgeon.co.uk/code/dbad-license 
 */

// --------------------------------------------------------------------------

/**
 * Base Model Class
 *
 * @package miniMVC
 * @subpackage System
 */
class MM_Model extends miniMVC {

	/**
	 * Initialize the model class
	 *
	 * @param array $args
	 * @return void
	 */
	public function __construct(array $args = [])
	{
		parent::__construct($args);
	}
}

// End of model.php