Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

phpstan #25690

Closed
wants to merge 1 commit into from
Closed

phpstan #25690

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion htdocs/core/class/html.formfile.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Copyright (C) 2014 Marcos García <[email protected]>
* Copyright (C) 2015 Bahfir Abbes <[email protected]>
* Copyright (C) 2016-2017 Ferran Marcet <[email protected]>
* Copyright (C) 2019-2022 Frédéric France <[email protected]>
* Copyright (C) 2019-2023 Frédéric France <[email protected]>
*
* 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
Expand Down Expand Up @@ -42,6 +42,11 @@ class FormFile
*/
public $error;

/**
* @var array used for caching object
*/
public $cache_objects = array();

public $numoffiles;
public $infofiles; // Used to return informations by function getDocumentsLink

Expand Down
Loading