From: Roland Haeder Date: Tue, 7 Apr 2015 14:25:24 +0000 (+0200) Subject: Fixed parser error. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=d8064406dd069aac5c3735ffa37d42fdc199a744 Fixed parser error. Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/file_directories/io_stream/class_FileIoStream.php b/inc/classes/main/file_directories/io_stream/class_FileIoStream.php index f6752b27..f51884fd 100644 --- a/inc/classes/main/file_directories/io_stream/class_FileIoStream.php +++ b/inc/classes/main/file_directories/io_stream/class_FileIoStream.php @@ -84,7 +84,7 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil $fileInstance = ObjectFactory::createObjectByConfiguredName('file_raw_output_class', array($fileName, 'wb')); } catch (FileIoException $e) { // Bail out - ApplicationEntryPoint::app_exit('The application has made a fatal error. Exception: ' $e->__toString() . ' with message: ' . $e->getMessage()); + ApplicationEntryPoint::app_exit('The application has made a fatal error. Exception: ' . $e->__toString() . ' with message: ' . $e->getMessage()); } } // END - for