mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Merge pull request #13703 from MrPetovan/bug/deprecated
Add ReturnTypeWillChange attribute to methods in Session\Handler\Cache
This commit is contained in:
commit
708d3892a7
1 changed files with 3 additions and 0 deletions
|
@ -46,6 +46,7 @@ class Cache extends AbstractSessionHandler
|
|||
return true;
|
||||
}
|
||||
|
||||
#[\ReturnTypeWillChange]
|
||||
public function read($id)
|
||||
{
|
||||
if (empty($id)) {
|
||||
|
@ -77,6 +78,7 @@ class Cache extends AbstractSessionHandler
|
|||
*
|
||||
* @return bool Returns false if parameters are missing, true otherwise
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function write($id, $data): bool
|
||||
{
|
||||
if (!$id) {
|
||||
|
@ -110,6 +112,7 @@ class Cache extends AbstractSessionHandler
|
|||
}
|
||||
}
|
||||
|
||||
#[\ReturnTypeWillChange]
|
||||
public function gc($max_lifetime): bool
|
||||
{
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue