* @copyright 2015 - 2021 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 5.2 * @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, ]); } }