From: Diogo Cordeiro Date: Fri, 19 Apr 2019 14:25:01 +0000 (+0100) Subject: XMPPHP - Fix string as array usage errors on PHP 7 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=986030060b;p=quix0rs-gnu-social.git XMPPHP - Fix string as array usage errors on PHP 7 --- diff --git a/plugins/Xmpp/extlib/XMPPHP/XMLStream.php b/plugins/Xmpp/extlib/XMPPHP/XMLStream.php index 5c71426200..b7eb81aecd 100644 --- a/plugins/Xmpp/extlib/XMPPHP/XMLStream.php +++ b/plugins/Xmpp/extlib/XMPPHP/XMLStream.php @@ -27,13 +27,13 @@ */ /** XMPPHP_Exception */ -require_once dirname(__FILE__) . '/Exception.php'; +require_once __DIR__ . DIRECTORY_SEPARATOR . 'Exception.php'; /** XMPPHP_XMLObj */ -require_once dirname(__FILE__) . '/XMLObj.php'; +require_once __DIR__ . DIRECTORY_SEPARATOR . 'XMLObj.php'; /** XMPPHP_Log */ -require_once dirname(__FILE__) . '/Log.php'; +require_once __DIR__ . DIRECTORY_SEPARTOR. 'Log.php'; /** * XMPPHP XML Stream @@ -124,13 +124,13 @@ class XMPPHP_XMLStream { */ protected $default_ns; /** - * @var string + * @var string[] */ - protected $until = ''; + protected $until = []; /** - * @var string + * @var int[] */ - protected $until_count = ''; + protected $until_count = []; /** * @var array */