| @@ 180-188 (lines=9) @@ | ||
| 177 | } |
|
| 178 | } |
|
| 179 | ||
| 180 | public function startHar() |
|
| 181 | { |
|
| 182 | try { |
|
| 183 | $this->response = $this->bmp->newHar(); |
|
| 184 | } catch (\Exception $e) { |
|
| 185 | throw new ModuleException(__CLASS__, $e->getMessage()); |
|
| 186 | } |
|
| 187 | return $this->response->success; |
|
| 188 | } |
|
| 189 | ||
| 190 | public function startPage() |
|
| 191 | { |
|
| @@ 190-198 (lines=9) @@ | ||
| 187 | return $this->response->success; |
|
| 188 | } |
|
| 189 | ||
| 190 | public function startPage() |
|
| 191 | { |
|
| 192 | try { |
|
| 193 | $this->response = $this->bmp->newPage(); |
|
| 194 | } catch (\Exception $e) { |
|
| 195 | throw new ModuleException(__CLASS__, $e->getMessage()); |
|
| 196 | } |
|
| 197 | return $this->response->success; |
|
| 198 | } |
|
| 199 | ||
| 200 | public function getHar() |
|
| 201 | { |
|