Normalize App parameter declaration (mod folder, 1 out of 3)

This commit is contained in:
Hypolite Petovan 2017-01-09 23:12:54 +11:00
parent ee39aba490
commit 8a197055e3
42 changed files with 172 additions and 174 deletions

View file

@ -5,19 +5,19 @@
*/
function cb_init(App &$a) {
function cb_init(App $a) {
call_hooks('cb_init');
}
function cb_post(App &$a) {
function cb_post(App $a) {
call_hooks('cb_post', $_POST);
}
function cb_afterpost(App &$a) {
function cb_afterpost(App $a) {
call_hooks('cb_afterpost');
}
function cb_content(App &$a) {
function cb_content(App $a) {
$o = '';
call_hooks('cb_content', $o);
return $o;