1 <?php
2
3 /*
4 * This file is part of the Icybee package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Icybee\Modules\Nodes;
13
14 class QueryOperationOperation extends \Icybee\Operation\Module\QueryOperation
15 {
16 protected function query_online()
17 {
18 return [
19
20 'params' => [
21
22 'keys' => $this->request['keys']
23
24 ]
25
26 ];
27 }
28
29 protected function query_offline()
30 {
31 return [
32
33 'params' => [
34
35 'keys' => $this->request['keys']
36
37 ]
38
39 ];
40 }
41 }