Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Fix php 8 , Fatal error: Cannot redeclare , Deprecated Creation of dynamic property #2224

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,18 @@ class Binary
* @var string
*/
private $sReadEndBuffer;


/**
* @var string
*/
public $context;

/**
* @param string $sContentTransferEncoding
* @param bool $bDecode = true
*
* @return string
*/
*/
public static function GetInlineDecodeOrEncodeFunctionName($sContentTransferEncoding, $bDecode = true)
{
$sFunctionName = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ class Literal
* @var int
*/
private $iPos;


/**
* @var string
*/
public $context;

/**
* @param resource $rStream
* @param int $iLiteralLen
Expand Down
5 changes: 5 additions & 0 deletions rainloop/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ class ImapClient extends \MailSo\Net\NetClient
*/
public $__FORCE_SELECT_ON_EXAMINE__;

/**
* @var bool
*/
private $bResponseBufferChanged;

/**
* @access protected
*/
Expand Down
5 changes: 5 additions & 0 deletions rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ class Actions
*/
private $sUpdateAuthToken;

/**
* @var bool
*/
private $bIsAjax;

/**
* @access private
*/
Expand Down
5 changes: 5 additions & 0 deletions rainloop/v/0.0.0/app/libraries/RainLoop/Plugins/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ class Manager
*/
private $oLogger;

/**
* @var array
*/
private $aAjaxFilters;

/**
* @param \RainLoop\Actions $oActions
*/
Expand Down