2020-08-21 12:30:01 -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-21 12:30:01 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2021-01-13 01:52:03 -05:00
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
2020-08-21 12:30:01 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2020-08-21 12:30:01 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Component;
|
|
|
|
|
|
|
|
final class Character {
|
|
|
|
use ComponentTrait;
|
|
|
|
|
|
|
|
public function __invoke(string $name, string $link, string $picture, string $className = 'character'): string
|
|
|
|
{
|
|
|
|
return $this->render('character.php', [
|
|
|
|
'name' => $name,
|
|
|
|
'link' => $link,
|
|
|
|
'picture' => $picture,
|
|
|
|
'className' => $className,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|