miniMVC/sys/core/model.php

35 lines
649 B
PHP
Raw Normal View History

2012-04-27 16:28:25 -04:00
<?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
*
2012-05-15 16:53:10 -04:00
* @param array $args
2012-04-27 16:28:25 -04:00
* @return void
*/
2012-05-15 16:53:10 -04:00
public function __construct(array $args = [])
2012-04-27 16:28:25 -04:00
{
2012-05-15 16:53:10 -04:00
parent::__construct($args);
2012-04-27 16:28:25 -04:00
}
}
// End of model.php