XMPPHP - Fix string as array usage errors on PHP 7

This commit is contained in:
Diogo Cordeiro 2019-04-19 15:25:01 +01:00
parent 2d20656e22
commit 986030060b
1 changed files with 7 additions and 7 deletions

View File

@ -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
*/