1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 /**
7 * This method can be used to work with not yet implemented api-methodes
8 * @package system\module
9 */
10 class placeholder extends apiModule
11 {
12 public function setMethod($name)
13 {
14 $this->rpcMethod = $name;
15 return $this;
16 }
17
18 public function addParam($name, $value)
19 {
20 return $this->addParam($name, $value);
21 }
22 }