Closed justlevine closed 11 months ago
As of v0.14.1, PHP files with an inline namespace ( i.e. <?php namespace MyNamespace; instead of <?php \nnamespace MyNamespace;) are no longer parsed and instead the class is renamed to a global prefix.
<?php namespace MyNamespace;
<?php \nnamespace MyNamespace;
E.g.: Source file.
(Left: 0.14.0 | Right: v0.14.1 )
Thanks. Fixed in master: https://github.com/BrianHenryIE/strauss/commit/cccf5960336cee703777cf1b835be25832f73ccd
master
I'm working on another aspect of Strauss today so hopefully there'll be a release this week.
As of v0.14.1, PHP files with an inline namespace ( i.e.
<?php namespace MyNamespace;
instead of<?php \nnamespace MyNamespace;
) are no longer parsed and instead the class is renamed to a global prefix.E.g.: Source file.
(Left: 0.14.0 | Right: v0.14.1 )