2018-10-05 21:32:15 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2020-04-10 15:39:39 -04:00
|
|
|
* PHP version 7.4
|
2018-10-05 21:32:15 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2020-01-08 15:39:49 -05:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2018-10-05 21:32:15 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-04-10 15:39:39 -04:00
|
|
|
* @version 5
|
2018-10-05 21:32:15 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Helper;
|
|
|
|
|
|
|
|
use Aviat\AnimeClient\FormGenerator;
|
|
|
|
use Aviat\Ion\Di\ContainerAware;
|
|
|
|
|
|
|
|
/**
|
2018-12-21 15:52:34 -05:00
|
|
|
* FormGenerator helper wrapper
|
2018-10-05 21:32:15 -04:00
|
|
|
*/
|
|
|
|
final class Form {
|
|
|
|
|
|
|
|
use ContainerAware;
|
|
|
|
|
|
|
|
/**
|
2018-12-21 15:52:34 -05:00
|
|
|
* Create the html for the specified form
|
2018-10-05 21:32:15 -04:00
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param array $form
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function __invoke(string $name, array $form)
|
|
|
|
{
|
|
|
|
return (new FormGenerator($this->container))->generate($name, $form);
|
|
|
|
}
|
|
|
|
}
|