Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 7 additions and 0 deletions
Showing only changes of commit 79f71eee09 - Show all commits

View File

@ -38,6 +38,12 @@ class Manga extends Controller {
*/
protected $base_data;
/**
* Cache manager
* @var \Aviat\Ion\Cache\CacheInterface
*/
protected $cache;
/**
* Constructor
*
@ -54,6 +60,7 @@ class Manga extends Controller {
'url_type' => 'manga',
'other_type' => 'anime'
]);
$this->cache = $container->get('cache');
}
/**