| 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 | * @var array |
||
| 13 | */ |
||
| 14 | private $idToTimesRecommendedMap = []; |
||
| 15 | |||
| 16 | 2 | public static function list(array $ids): self |
|
| 36 | |||
| 37 | 2 | public function process(array $data): array |
|
| 61 | } |