Version 5.1 - All the GraphQL #32

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

View File

@ -15,6 +15,5 @@
</article>
<?php endforeach ?>
</section>
<pre><?= print_r($items, TRUE) ?></pre>
<?php endif ?>
</main>

View File

@ -25,7 +25,7 @@ class Anime extends AbstractType {
/**
* @var string
*/
public string $age_rating = '';
public ?string $age_rating = '';
/**
* @var string
@ -53,9 +53,9 @@ class Anime extends AbstractType {
public array $genres = [];
/**
* @var string
* @var string|int
*/
public string $id = '';
public $id = '';
/**
* @var array

View File

@ -216,6 +216,7 @@ class DispatcherTest extends AnimeClientTestCase {
'settings' => Controller\Settings::class,
'user' => Controller\User::class,
'images' => Controller\Images::class,
'history' => Controller\History::class,
];
return [