2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird 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
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
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:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Model;
|
2015-06-11 16:44:52 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base model for api interaction
|
|
|
|
*/
|
2017-02-17 08:39:27 -05:00
|
|
|
class API extends AbstractModel {
|
2016-07-27 13:18:52 -04:00
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
/**
|
2017-01-25 13:37:39 -05:00
|
|
|
* Sort the list entries by their title
|
2016-01-04 16:58:33 -05:00
|
|
|
*
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
* @param array $array
|
2017-02-17 10:55:17 -05:00
|
|
|
* @param string $sortKey
|
2016-01-04 16:58:33 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2017-02-17 08:39:27 -05:00
|
|
|
protected function sortByName(array &$array, string $sortKey)
|
2016-01-04 16:58:33 -05:00
|
|
|
{
|
2016-08-30 10:57:41 -04:00
|
|
|
$sort = [];
|
2016-01-04 16:58:33 -05:00
|
|
|
|
|
|
|
foreach ($array as $key => $item)
|
|
|
|
{
|
2017-02-17 08:39:27 -05:00
|
|
|
$sort[$key] = $item[$sortKey]['titles'][0];
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
array_multisort($sort, SORT_ASC, $array);
|
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
}
|