diff options
author | Valentin Popov <info@valentineus.link> | 2020-07-22 11:36:00 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-07-22 11:36:00 +0300 |
commit | a93c94f338a9e3188639015346ac01f08a36b44e (patch) | |
tree | 2fec41df0e34a3c55a57a43fb2e40358ade30dad /src/Repositories/GenreRepository.php | |
parent | 506e16bdfcae6996adacdcb5ba23fdf45c98bafe (diff) | |
download | php-epg-service-a93c94f338a9e3188639015346ac01f08a36b44e.tar.xz php-epg-service-a93c94f338a9e3188639015346ac01f08a36b44e.zip |
Fixed bugs and updated tests
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/Repositories/GenreRepository.php')
-rw-r--r-- | src/Repositories/GenreRepository.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Repositories/GenreRepository.php b/src/Repositories/GenreRepository.php index 67c9a4e..8b1284b 100644 --- a/src/Repositories/GenreRepository.php +++ b/src/Repositories/GenreRepository.php @@ -91,7 +91,7 @@ final class GenreRepository implements BaseRepository { } $result[] = GenreEntity::create([ - 'id' => IntegerParser::get($element['id']), + 'id' => StringParser::get($element['id']), 'lang' => StringParser::get($element->name['lang']), 'name' => StringParser::get($element->name), 'version' => StringParser::get($element['version']), |