laminas / laminas-modulemanager

Modular application system for laminas-mvc applications
https://docs.laminas.dev/laminas-modulemanager/
BSD 3-Clause "New" or "Revised" License
30 stars 18 forks source link

Fix superfluous traling semicolon in cached config #17

Closed bcremer closed 4 years ago

bcremer commented 4 years ago

The trailing semicolon gets already yielded by VarExporter::export.

Q A
Bugfix yes(ish)

The generated cache file contained an extra semicolon:

<?php
return [
    'service_manager' => [
    ]
];
;

This is more of an cosmetic fix as the traling semicolon should not have any negativ impact.