mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix some PHP8.1 issues if possible
This commit is contained in:
parent
3b03da3259
commit
477bec1977
4 changed files with 9 additions and 9 deletions
|
@ -130,7 +130,7 @@ class Page implements ArrayAccess
|
|||
* The return value will be casted to boolean if non-boolean was returned.
|
||||
* @since 5.0.0
|
||||
*/
|
||||
public function offsetExists($offset)
|
||||
public function offsetExists($offset): bool
|
||||
{
|
||||
return isset($this->page[$offset]);
|
||||
}
|
||||
|
|
|
@ -188,10 +188,10 @@ class L10n
|
|||
{
|
||||
$lang_variable = $server['HTTP_ACCEPT_LANGUAGE'] ?? null;
|
||||
|
||||
$acceptedLanguages = preg_split('/,\s*/', $lang_variable);
|
||||
|
||||
if (empty($acceptedLanguages)) {
|
||||
if (empty($lang_variable)) {
|
||||
$acceptedLanguages = [];
|
||||
} else {
|
||||
$acceptedLanguages = preg_split('/,\s*/', $lang_variable);
|
||||
}
|
||||
|
||||
// Add get as absolute quality accepted language (except this language isn't valid)
|
||||
|
|
|
@ -485,11 +485,11 @@ class Network
|
|||
$get('host') .
|
||||
($port ? ":$port" : '');
|
||||
|
||||
return (strlen($scheme) ? $scheme . ':' : '') .
|
||||
(strlen($authority) ? '//' . $authority : '') .
|
||||
return (!empty($scheme) ? $scheme . ':' : '') .
|
||||
(!empty($authority) ? '//' . $authority : '') .
|
||||
$get('path') .
|
||||
(strlen($query) ? '?' . $query : '') .
|
||||
(strlen($fragment) ? '#' . $fragment : '');
|
||||
(!empty($query) ? '?' . $query : '') .
|
||||
(!empty($fragment) ? '#' . $fragment : '');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -60,7 +60,7 @@ class ReversedFileReader implements \Iterator
|
|||
$this->fh = fopen($filename, 'r');
|
||||
if (!$this->fh) {
|
||||
// this should use a custom exception.
|
||||
throw \Exception("Unable to open $filename");
|
||||
throw new \Exception("Unable to open $filename");
|
||||
}
|
||||
$this->filesize = filesize($filename);
|
||||
$this->pos = -1;
|
||||
|
|
Loading…
Reference in a new issue