2018-08-10 20:10:19 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2018-08-10 20:10:19 -04:00
|
|
|
*
|
2020-12-10 17:06:50 -05:00
|
|
|
* PHP version 7.4+
|
2018-08-10 20:10:19 -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
|
2018-08-10 20:10:19 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2018-08-10 20:10:19 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
2018-08-15 08:51:37 -04:00
|
|
|
namespace Aviat\AnimeClient\API\Anilist;
|
2018-08-10 20:10:19 -04:00
|
|
|
|
2018-08-15 14:05:28 -04:00
|
|
|
use Aviat\Ion\Di\ContainerAware;
|
2018-08-10 20:10:19 -04:00
|
|
|
|
2020-08-06 09:39:12 -04:00
|
|
|
trait RequestBuilderTrait {
|
2018-08-15 14:05:28 -04:00
|
|
|
use ContainerAware;
|
2018-08-10 20:10:19 -04:00
|
|
|
|
|
|
|
/**
|
2018-08-22 13:48:27 -04:00
|
|
|
* The request builder for the Anilist API
|
2018-08-10 20:10:19 -04:00
|
|
|
*/
|
2020-08-06 09:39:12 -04:00
|
|
|
protected RequestBuilder $requestBuilder;
|
2018-08-10 20:10:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the request builder object
|
|
|
|
*
|
2020-08-06 09:39:12 -04:00
|
|
|
* @param RequestBuilder $requestBuilder
|
2018-08-10 20:10:19 -04:00
|
|
|
* @return self
|
|
|
|
*/
|
2020-12-10 15:59:37 -05:00
|
|
|
public function setRequestBuilder(RequestBuilder $requestBuilder): self
|
2018-08-10 20:10:19 -04:00
|
|
|
{
|
|
|
|
$this->requestBuilder = $requestBuilder;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|