Hi,
i'm trying to make an export xlsx of a report but the system throw an exception makin' an instance of \PHPExcel() class
/vendor/phpoffice/phpexcel/Classes/PHPExcel.php
"syntax error, unexpected '\' (T_NS_SEPARATOR), expecting identifier (T_STRING)"
file: /EspoCRM-5.2.1/files/vendor/phpoffice/phpexcel/Classes/PHPExcel.php
line: 43
the function process in file "Espo/Modules/Advanced/Core/Report/ExportXlsx.php" , call the class that throw the exception
i'm trying to make an export xlsx of a report but the system throw an exception makin' an instance of \PHPExcel() class
/vendor/phpoffice/phpexcel/Classes/PHPExcel.php
"syntax error, unexpected '\' (T_NS_SEPARATOR), expecting identifier (T_STRING)"
file: /EspoCRM-5.2.1/files/vendor/phpoffice/phpexcel/Classes/PHPExcel.php
line: 43
the function process in file "Espo/Modules/Advanced/Core/Report/ExportXlsx.php" , call the class that throw the exception
PHP Code:
public function process($entityType, $params, $result)
{
$phpExcel = new \PHPExcel();
...
Comment