Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 2 additions and 2 deletions
Showing only changes of commit cb7a4c28e5 - Show all commits

View File

@ -412,11 +412,11 @@ final class Kitsu {
/**
* Determine if an alternate title is unique enough to list
*
* @param string $title
* @param string|null $title
* @param array $existingTitles
* @return bool
*/
private static function titleIsUnique(string $title = '', array $existingTitles = []): bool
private static function titleIsUnique(?string $title = '', array $existingTitles = []): bool
{
if (empty($title))
{