You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating routes (php-swaggerize-fastroute-library 0.2.0 , php 7.1), the output file contains trailing space before newline when => leads to array on next line.
Example from git diff:
I guess this is a var_export issue.
Passing the output through rtrim($serializedRoutes, " ") should do the trick.
The text was updated successfully, but these errors were encountered:
When generating routes (php-swaggerize-fastroute-library 0.2.0 , php 7.1), the output file contains trailing space before newline when
=>
leads to array on next line.Example from git diff:
I guess this is a
var_export
issue.Passing the output through
rtrim($serializedRoutes, " ")
should do the trick.The text was updated successfully, but these errors were encountered: