2020-08-26 17:26:42 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2020-12-10 17:06:50 -05:00
|
|
|
* PHP version 7.4+
|
2020-08-26 17:26:42 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2020-08-26 17:26:42 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Component;
|
|
|
|
|
|
|
|
use Aviat\AnimeClient\Types\MangaListItem;
|
|
|
|
|
|
|
|
final class MangaCover {
|
|
|
|
use ComponentTrait;
|
|
|
|
|
|
|
|
public function __invoke(MangaListItem $item, string $name): string
|
|
|
|
{
|
|
|
|
return $this->render('manga-cover.php', [
|
|
|
|
'item' => $item,
|
|
|
|
'name' => $name,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|