1 | <?php |
||
12 | class Products extends BaseOutput |
||
13 | { |
||
14 | /** |
||
15 | * output for the search API. |
||
16 | * |
||
17 | * @param OutputInterface $output |
||
18 | * @param array $response |
||
19 | */ |
||
20 | 1 | public function search(OutputInterface $output, array $response) |
|
24 | |||
25 | /** |
||
26 | * output for the references API. |
||
27 | * |
||
28 | * @param OutputInterface $output |
||
29 | * @param array $response |
||
30 | */ |
||
31 | 1 | public function references(OutputInterface $output, array $response) |
|
35 | |||
36 | /** |
||
37 | * output for the show API. |
||
38 | * |
||
39 | * @param OutputInterface $output |
||
40 | * @param array $response |
||
41 | */ |
||
42 | 1 | public function show(OutputInterface $output, array $response) |
|
73 | |||
74 | /** |
||
75 | * output for the follow status API. |
||
76 | * |
||
77 | * @param OutputInterface $output |
||
78 | * @param array $response |
||
79 | */ |
||
80 | 1 | public function followStatus(OutputInterface $output, array $response) |
|
84 | |||
85 | /** |
||
86 | * output for the follow API. |
||
87 | * |
||
88 | * @param OutputInterface $output |
||
89 | * @param array $response |
||
90 | */ |
||
91 | 1 | public function follow(OutputInterface $output, array $response) |
|
95 | |||
96 | /** |
||
97 | * output for the unfollow API. |
||
98 | * |
||
99 | * @param OutputInterface $output |
||
100 | * @param array $response |
||
101 | */ |
||
102 | 1 | public function unfollow(OutputInterface $output, array $response) |
|
106 | |||
107 | /** |
||
108 | * output for the versions API. |
||
109 | * |
||
110 | * @param OutputInterface $output |
||
111 | * @param array $response |
||
112 | */ |
||
113 | 1 | public function versions(OutputInterface $output, array $response) |
|
134 | } |
||
135 |