Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
3 | class JsController extends Zend_Controller_Action |
||
4 | { |
||
5 | public function init(): void |
||
6 | { |
||
7 | $this->_helper->layout->disableLayout(); |
||
|
|||
8 | $this->_helper->headers('application/javascript'); |
||
9 | } |
||
10 | |||
11 | public function remoteJsAction(): void |
||
13 | // action body |
||
14 | } |
||
15 | |||
16 | public function mqueueUserJsAction(): void |
||
18 | // action body |
||
19 | } |
||
21 |