29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-16 00:52:49 +00:00

[4.2] Add missing properties (#39691)

Co-authored-by: Quy <quy@nomonkeybiz.com>
This commit is contained in:
Tuan Pham Ngoc 2023-02-11 20:14:48 +07:00 committed by GitHub
parent 7114943560
commit af9ab5dc4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 73 additions and 0 deletions

View File

@ -84,6 +84,22 @@ if (!\defined('FTP_NATIVE')) {
*/
class FtpClient
{
/**
* The response code
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $_responseCode;
/**
* The response message
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $_responseMsg;
/**
* @var resource Socket resource
* @since 1.5

View File

@ -25,6 +25,14 @@ use Joomla\CMS\Object\CMSObject;
*/
class InstallerExtension extends CMSObject
{
/**
* Client ID of the extension
*
* @var int
* @since __DEPLOY_VERSION__
*/
public $client_id;
/**
* Filename of the extension
*

View File

@ -22,6 +22,14 @@ use Joomla\CMS\Language\Text;
*/
abstract class Manifest
{
/**
* The error messages
*
* @var array
* @since __DEPLOY_VERSION__
*/
public $_errors;
/**
* Path to the manifest file
*

View File

@ -22,6 +22,14 @@ use Joomla\CMS\Installer\Manifest;
*/
class LibraryManifest extends Manifest
{
/**
* Creation date of the library
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $creationdate;
/**
* File system name of the library
*

View File

@ -23,6 +23,30 @@ use Joomla\CMS\Installer\Manifest;
*/
class PackageManifest extends Manifest
{
/**
* Author url of the package
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $authorurl;
/**
* Author of the package
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $author;
/**
* Author email of the package
*
* @var string
* @since __DEPLOY_VERSION__
*/
public $authoremail;
/**
* Unique name of the package
*

View File

@ -69,6 +69,14 @@ class DatabaseLogger extends Logger
*/
protected $database = 'logging';
/**
* The database table prefix of the database store logging entries.
*
* @var string
* @since __DEPLOY_VERSION__
*/
protected $prefix;
/**
* The database table to use for logging entries.
*

View File

@ -94,6 +94,7 @@
<exclude-pattern type="relative">libraries/src/Encrypt/Totp\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/Form/Field/CaptchaField\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/Input/Json\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/Installer/Manifest\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/MVC/Model/DatabaseAwareTrait\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/MVC/Model/FormBehaviorTrait\.php</exclude-pattern>
<exclude-pattern type="relative">libraries/src/MVC/Model/ItemModel\.php</exclude-pattern>