fix phpstan (#31613)

* fix phpstan

* fix
This commit is contained in:
Frédéric FRANCE
2024-10-29 17:31:59 +01:00
committed by GitHub
parent d2316eb6e1
commit e24cda47ce

View File

@@ -3,7 +3,8 @@
* Copyright (c) 2008-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -38,6 +39,10 @@ abstract class Stats
* @var array<string,int> Dates of cache file read by methods
*/
protected $lastfetchdate = array();
/**
* @var string cachefilesuffix
*/
public $cachefilesuffix = ''; // Suffix to add to name of cache file (to avoid file name conflicts)
/**