1 | <?php |
||
15 | class WpBridge implements WpBridgeInterface |
||
16 | { |
||
17 | /** |
||
18 | * Magic call on all camel wordpress functions. |
||
19 | * |
||
20 | * @param string $function |
||
21 | * @param array $args |
||
22 | * |
||
23 | * @return mixed |
||
24 | */ |
||
25 | public function __call($function, $args) |
||
29 | |||
30 | /** |
||
31 | * Rename camelcase to underscore. |
||
32 | * |
||
33 | * @param string $string |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | public function camelToUnderscore($string) |
||
41 | } |
||
42 |