HummingBirdAnimeClient/src/AnimeClient/Types/Config/Cache.php

45 lines
885 B
PHP
Raw Normal View History

2018-10-05 14:32:05 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
* PHP version 7.4
2018-10-05 14:32:05 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2018-10-05 14:32:05 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
2018-10-05 14:32:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types\Config;
use Aviat\AnimeClient\Types\AbstractType;
class Cache extends AbstractType {
2019-12-09 13:13:31 -05:00
/**
* @var string
*/
2020-12-10 15:59:37 -05:00
public string $driver = 'null';
2019-12-09 13:13:31 -05:00
2020-12-10 15:59:37 -05:00
public ?string $host;
2020-08-26 15:25:31 -04:00
2020-12-10 15:59:37 -05:00
/**
* @var string|int|null
*/
2020-08-26 15:25:31 -04:00
public $port;
2020-12-10 15:59:37 -05:00
public ?string $database;
2020-08-26 15:25:31 -04:00
2019-12-09 13:13:31 -05:00
/**
* @var array
*/
2020-12-10 15:59:37 -05:00
public array $connection = [];
2019-12-09 13:13:31 -05:00
/**
* @var array
*/
2020-12-10 15:59:37 -05:00
public array $options = [];
2018-10-05 14:32:05 -04:00
}