1 | <?php |
||
7 | class UserRecommendationTransformer implements Transformer |
||
8 | { |
||
9 | private $hiddenFields = []; |
||
10 | /** |
||
11 | * [int movie id => int how many times this movie were recommended]. |
||
12 | * |
||
13 | * @var array |
||
14 | */ |
||
15 | private $idToTimesRecommendedMap = []; |
||
16 | |||
17 | 2 | public static function list(array $ids): self |
|
37 | |||
38 | 2 | public function process(array $data): array |
|
62 | } |
||
63 |