Total Complexity | 2 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
28 | class RecommendationsController extends Controller |
||
29 | { |
||
30 | // Constants |
||
31 | // ========================================================================= |
||
32 | |||
33 | // Protected Properties |
||
34 | // ========================================================================= |
||
35 | |||
36 | /** |
||
37 | * @var bool|array |
||
38 | */ |
||
39 | protected $allowAnonymous = []; |
||
40 | |||
41 | // Public Methods |
||
42 | // ========================================================================= |
||
43 | |||
44 | /** |
||
45 | * Return a list of recommendations |
||
46 | * |
||
47 | * @param string $pageUrl |
||
48 | * @param string $start |
||
49 | * @param string $end |
||
50 | * @param int $siteId |
||
51 | * |
||
52 | * @return Response |
||
53 | * @throws ForbiddenHttpException |
||
54 | */ |
||
55 | public function actionList( |
||
75 |