29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-30 00:53:41 +00:00

PHP 8.2 Creation of dynamic property (#41554)

This commit is contained in:
Denitz 2023-09-19 02:34:51 +03:00 committed by GitHub
parent 153879558c
commit 6da44a9a22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,22 @@ class FileAdapter extends InstallerAdapter
*/
protected $supportsDiscoverInstall = false;
/**
* List of processed folders
*
* @var array
* @since 3.4
*/
protected $folderList;
/**
* List of processed files
*
* @var array
* @since 3.4
*/
protected $fileList;
/**
* Method to copy the extension's base files from the `<files>` tag(s) and the manifest file
*