<?php /** * MiniMVC * * Convention-based micro-framework for PHP * * @package miniMVC * @author Timothy J. Warren * @copyright Copyright (c) 2011 - 2012 * @link https://github.com/aviat4ion/miniMVC * @license http://philsturgeon.co.uk/code/dbad-license */ // -------------------------------------------------------------------------- namespace miniMVC; /** * Base Model Class * * @package miniMVC * @subpackage System */ class Model extends miniMVC { /** * Initialize the model class * * @param array $args * @return void */ public function __construct(array $args = []) { parent::__construct($args); } } // End of model.php