We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following line (53) in PO.PHP:
return implode("\n\n", array_map(array('PO', 'export_entry'), $this->entries));
gives me the following error when I import the class via use POMO/PO; and call the export_to_file method:
use POMO/PO;
export_to_file
array_map() expects parameter 1 to be a valid callback, class 'PO' not found
The text was updated successfully, but these errors were encountered:
Thanks for reporting.
use
use POMO\PO;
Sorry, something went wrong.
fe57fa4
Seems to be fixed! Let me know if it works on your side.
🏇
Oops, sorry about that typo :/
That has indeed fixed the issue. Thank you very much.
LeoColomb
No branches or pull requests
The following line (53) in PO.PHP:
return implode("\n\n", array_map(array('PO', 'export_entry'), $this->entries));
gives me the following error when I import the class via
use POMO/PO;
and call theexport_to_file
method:array_map() expects parameter 1 to be a valid callback, class 'PO' not found
The text was updated successfully, but these errors were encountered: