for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Model Manager
*
* @category core
* @package core\Model
* @author Judicaël Paquet <[email protected]>
* @copyright Copyright (c) 2013-2014 PAQUET Judicaël FR Inc. (https://github.com/las93)
* @license https://github.com/las93/venus2/blob/master/LICENSE.md Tout droit réservé à PAQUET Judicaël
* @version Release: 2.0.0
* @filesource https://github.com/las93/venus2
* @link https://github.com/las93
* @since 2.0.0
*/
namespace Venus\core;
use \Attila\core\Model as AttilaModel;
class Model extends AttilaModel
{
* Constructor
* @access public
* @param Config $oDbConfig
public function __construct(Config $oDbConfig = null)
$oDbConfig = Config::get('Db')->configuration;
parent::__construct($oDbConfig);
}