Merge pull request #111 from jclyons52/master

Removed trailing comma from call to array_merge.
This commit is contained in:
Frank de Jonge 2017-03-16 10:19:22 +01:00 committed by GitHub
commit eea377a312

View file

@ -97,7 +97,7 @@ $files = array_merge(
glob(__DIR__ . '/*.xml.dist'),
glob(__DIR__ . '/composer.json'),
glob(__DIR__ . '/src/*.php'),
glob(__DIR__ . '/tests/*.php'),
glob(__DIR__ . '/tests/*.php')
);
foreach ($files as $f) {
$contents = file_get_contents($f);