Remove redundant cache loading

This commit is contained in:
Timothy Warren 2016-04-22 10:52:42 -04:00
parent e0b58a29ea
commit 1afb45522d
1 changed files with 0 additions and 7 deletions

View File

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