init
[mdref/mdref] / mdref / controllers / AppController.php
1 <?php
2
3 namespace controllers;
4
5 use http\Controller\Action;
6
7 abstract class AppController extends Action
8 {
9 protected function init() {
10 parent::init();
11
12 $this->payload->title = "mdref";
13 $this->payload->listing = 123;
14 }
15 }