forked from grumpydevelop/federator

fix lots of phan errors, now we only have phan errors left from temporary implementations. These will be fixed in the next commits as we properly re-integrate and remove temporary-code
10 lines
No EOL
165 B
PHP
10 lines
No EOL
165 B
PHP
<?php
|
|
|
|
if (!function_exists('getallheaders')) {
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
function getallheaders(): array {
|
|
return [];
|
|
}
|
|
} |