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) |
|
69 | |||
70 | /** |
||
71 | * output for the follow status API. |
||
72 | * |
||
73 | * @param OutputInterface $output |
||
74 | * @param array $response |
||
75 | */ |
||
76 | 1 | public function followStatus(OutputInterface $output, array $response) |
|
80 | |||
81 | /** |
||
82 | * output for the follow API. |
||
83 | * |
||
84 | * @param OutputInterface $output |
||
85 | * @param array $response |
||
86 | */ |
||
87 | 1 | public function follow(OutputInterface $output, array $response) |
|
91 | |||
92 | /** |
||
93 | * output for the unfollow API. |
||
94 | * |
||
95 | * @param OutputInterface $output |
||
96 | * @param array $response |
||
97 | */ |
||
98 | 1 | public function unfollow(OutputInterface $output, array $response) |
|
102 | |||
103 | /** |
||
104 | * output for the versions API. |
||
105 | * |
||
106 | * @param OutputInterface $output |
||
107 | * @param array $response |
||
108 | */ |
||
109 | 1 | public function versions(OutputInterface $output, array $response) |
|
130 | } |
||
131 |