HummingBirdAnimeClient/src/AnimeClient/Model/DB.php

44 lines
1.0 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
* PHP version 7.4
2016-08-30 10:01:18 -04:00
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Model;
2017-02-15 15:35:41 -05:00
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
/**
* Base model for database interaction
*/
2019-12-09 14:34:23 -05:00
abstract class DB {
2017-02-15 15:35:41 -05:00
use ContainerAware;
/**
* The database connection information array
2017-02-15 15:35:41 -05:00
* @var array $dbConfig
*/
2020-12-10 15:59:37 -05:00
protected array $dbConfig = [];
/**
* Constructor
*
* @param ContainerInterface $container
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
{
2017-02-15 15:35:41 -05:00
$this->dbConfig = $container->get('config')->get('database');
$this->setContainer($container);
}
}
// End of DB.php