More style fixes

This commit is contained in:
Timothy Warren 2017-02-15 13:07:36 -05:00
parent a04643ea10
commit 6652ed7354
2 changed files with 5 additions and 5 deletions

View File

@ -235,7 +235,7 @@ class Kitsu {
* @param array $existingTitles
* @return bool
*/
private static function titleIsUnique(string $title = null, array $existingTitles): bool
private static function titleIsUnique(string $title = null, array $existingTitles = []): bool
{
if (empty($title))
{

View File

@ -42,11 +42,11 @@ class MangaListTransformer extends AbstractTransformer {
? intval(2 * $item['attributes']['rating'])
: '-';
$total_chapters = ($manga['attributes']['chapterCount'] > 0)
$totalChapters = ($manga['attributes']['chapterCount'] > 0)
? $manga['attributes']['chapterCount']
: '-';
$total_volumes = ($manga['attributes']['volumeCount'] > 0)
$totalVolumes = ($manga['attributes']['volumeCount'] > 0)
? $manga['attributes']['volumeCount']
: '-';
@ -54,11 +54,11 @@ class MangaListTransformer extends AbstractTransformer {
'id' => $item['id'],
'chapters' => [
'read' => $item['attributes']['progress'],
'total' => $total_chapters
'total' => $totalChapters
],
'volumes' => [
'read' => '-', //$item['attributes']['volumes_read'],
'total' => $total_volumes
'total' => $totalVolumes
],
'manga' => [
'titles' => Kitsu::filterTitles($manga['attributes']),