File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
wcfsetup/install/files/lib/system/cache/tolerant Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1212 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
1313 * @since 6.2
1414 *
15- * @template T of array | object
15+ * @template T of array| object
1616 */
1717abstract class AbstractTolerantCache
1818{
1919 /**
2020 * @var T
2121 */
22- private array | object $ cache ;
22+ private array | object $ cache ;
2323 private string $ cacheName ;
2424
2525 /**
2626 * @return T
2727 */
28- final public function getCache (): array | object
28+ final public function getCache (): array | object
2929 {
3030 if (!isset ($ this ->cache )) {
3131 $ cache = CacheHandler::getInstance ()->getCacheSource ()->get (
@@ -108,7 +108,7 @@ final public function rebuild(): void
108108 /**
109109 * @return T
110110 */
111- abstract protected function rebuildCacheData (): array | object ;
111+ abstract protected function rebuildCacheData (): array | object ;
112112
113113 final public function nextRebuildTime (): int
114114 {
You can’t perform that action at this time.
0 commit comments