2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
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
|
|
|
*
|
2020-12-10 17:06:50 -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-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Model;
|
2015-09-14 10:54:50 -04:00
|
|
|
|
2017-02-15 15:35:41 -05:00
|
|
|
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
|
2015-06-11 16:44:52 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
2016-07-27 13:18:52 -04:00
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
/**
|
|
|
|
* The database connection information array
|
2017-02-15 15:35:41 -05:00
|
|
|
* @var array $dbConfig
|
2015-06-11 16:44:52 -04:00
|
|
|
*/
|
2020-12-10 15:59:37 -05:00
|
|
|
protected array $dbConfig = [];
|
2015-06-11 16:44:52 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
2015-09-16 12:25:35 -04:00
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @param ContainerInterface $container
|
2015-06-11 16:44:52 -04:00
|
|
|
*/
|
2015-09-17 23:11:18 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
2015-06-11 16:44:52 -04:00
|
|
|
{
|
2017-02-15 15:35:41 -05:00
|
|
|
$this->dbConfig = $container->get('config')->get('database');
|
2016-07-27 13:18:52 -04:00
|
|
|
$this->setContainer($container);
|
2015-06-11 16:44:52 -04:00
|
|
|
}
|
|
|
|
}
|
2016-07-27 13:18:52 -04:00
|
|
|
// End of DB.php
|