Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function __construct($paramsList) |
||
30 | { |
||
31 | list($this->serviceName, $this->routeId) = explode('&', $paramsList); |
||
32 | $this->serviceName = str_replace('service=', '', $this->serviceName); |
||
33 | $this->routeId = str_replace('routeId=', '', $this->routeId); |
||
34 | $this->routeId = str_replace('_', '/', $this->routeId); |
||
35 | } |
||
53 |