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
|
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2020-08-21 12:30:01 -04:00
|
|
|
*
|
2022-03-04 15:50:35 -05:00
|
|
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
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
|
2022-03-04 15:50:35 -05:00
|
|
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
2020-08-21 12:30:01 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Component;
|
|
|
|
|
2022-03-03 17:26:09 -05:00
|
|
|
final class Media
|
|
|
|
{
|
2020-08-21 12:30:01 -04:00
|
|
|
use ComponentTrait;
|
|
|
|
|
|
|
|
public function __invoke(array $titles, string $link, string $picture, string $className = 'media'): string
|
|
|
|
{
|
|
|
|
return $this->render('media.php', [
|
|
|
|
'titles' => $titles,
|
|
|
|
'link' => $link,
|
|
|
|
'picture' => $picture,
|
|
|
|
'className' => $className,
|
|
|
|
]);
|
|
|
|
}
|
2022-03-03 17:26:09 -05:00
|
|
|
}
|