aboutsummaryrefslogtreecommitdiff
path: root/src/Repositories/GenreRepository.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-22 11:36:00 +0300
committerValentin Popov <info@valentineus.link>2020-07-22 11:36:00 +0300
commita93c94f338a9e3188639015346ac01f08a36b44e (patch)
tree2fec41df0e34a3c55a57a43fb2e40358ade30dad /src/Repositories/GenreRepository.php
parent506e16bdfcae6996adacdcb5ba23fdf45c98bafe (diff)
downloadphp-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.php2
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']),