45 lines
949 B
PHP
45 lines
949 B
PHP
<?php
|
|
/**
|
|
* Hummingbird Anime Client
|
|
*
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
|
*
|
|
* @package HummingbirdAnimeClient
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2015
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
* @license MIT
|
|
*/
|
|
namespace Aviat\AnimeClient\Model;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
use Aviat\AnimeClient\Model as BaseModel;
|
|
|
|
/**
|
|
* Base model for database interaction
|
|
*/
|
|
class DB extends BaseModel {
|
|
/**
|
|
* The query builder object
|
|
* @var object $db
|
|
*/
|
|
protected $db;
|
|
|
|
/**
|
|
* The database connection information array
|
|
* @var array $db_config
|
|
*/
|
|
protected $db_config;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param ContainerInterface $container
|
|
*/
|
|
public function __construct(ContainerInterface $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->db_config = (array) $this->config->get('database');
|
|
}
|
|
}
|
|
// End of BaseDBModel.php
|