HummingBirdAnimeClient/src/Model/API.php

77 lines
1.5 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
2016-12-20 12:58:37 -05:00
* Anime List Client
2015-11-16 11:40:01 -05:00
*
2016-12-20 12:58:37 -05:00
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
2016-10-20 22:09:36 -04:00
* PHP version 7
2016-08-30 10:01:18 -04:00
*
2016-12-20 12:58:37 -05:00
* @package AnimeListClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2017-01-11 10:30:53 -05:00
* @copyright 2015 - 2017 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2016-12-20 12:58:37 -05:00
* @version 4.0
2015-11-16 11:40:01 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
2017-01-11 10:30:53 -05:00
*/namespace Aviat\AnimeClient\Model;
2016-12-20 12:58:37 -05:00
use Aviat\Ion\Di\{ContainerAware, ContainerInterface};
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Model;
/**
* Base model for api interaction
*/
class API extends Model {
2016-12-20 12:58:37 -05:00
use ContainerAware;
/**
* Config manager
* @var ConfigInterface
*/
protected $config;
2016-04-12 13:41:50 -04:00
/**
* Cache manager
* @var \Aviat\Ion\Cache\CacheInterface
*/
protected $cache;
/**
* Default settings for Guzzle
* @var array
*/
2016-12-20 12:58:37 -05:00
protected $connectionDefaults = [];
/**
* Constructor
*
* @param ContainerInterface $container
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
{
$this->container = $container;
$this->config = $container->get('config');
}
/**
* Sort the manga entries by their title
*
* @codeCoverageIgnore
* @param array $array
* @param string $sort_key
* @return void
*/
protected function sortByName(array &$array, string $sort_key)
{
2016-08-30 10:57:41 -04:00
$sort = [];
foreach ($array as $key => $item)
{
$sort[$key] = $item[$sort_key]['titles'][0];
}
array_multisort($sort, SORT_ASC, $array);
}
}
// End of BaseApiModel.php