Proper error if the conf file is invalid instead of fatal error

Error:

An error occurred while parsing configuration JSON file (data/config.json.php): error code 
➜ Syntax error
Please check your JSON syntax (without PHP comment tags) using a JSON lint tool such as jsonlint.com.
This commit is contained in:
ArthurHoaro 2017-03-12 16:09:34 +01:00
parent 7fc5f07492
commit c6a4c2882d
3 changed files with 14 additions and 4 deletions
tests/config

View file

@ -40,7 +40,7 @@ class ConfigJsonTest extends \PHPUnit_Framework_TestCase
* Read a non existent config file -> empty array.
*
* @expectedException \Exception
* @expectedExceptionMessage An error occurred while parsing JSON file: error code #4
* @expectedExceptionMessageRegExp /An error occurred while parsing JSON configuration file \([\w\/\.]+\): error code #4/
*/
public function testReadInvalidJson()
{