mirror of
https://github.com/friendica/friendica
synced 2025-04-25 07:10:11 +00:00
Normalize App parameter declaration (mod folder, 1 out of 3)
This commit is contained in:
parent
ee39aba490
commit
8a197055e3
42 changed files with 172 additions and 174 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists('home_init')) {
|
||||
function home_init(App &$a) {
|
||||
function home_init(App $a) {
|
||||
|
||||
$ret = array();
|
||||
call_hooks('home_init',$ret);
|
||||
|
@ -17,7 +17,7 @@ function home_init(App &$a) {
|
|||
}}
|
||||
|
||||
if(! function_exists('home_content')) {
|
||||
function home_content(App &$a) {
|
||||
function home_content(App $a) {
|
||||
|
||||
$o = '';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue