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
There is a break; on line 101 that isn't in a loop or switch, this causes an error in PHP 7.0.
break;
It is accompanied by this comment: need to simulate same behavior if exceptions are turned off
need to simulate same behavior if exceptions are turned off
Is it safe to simply comment out line 101?
The text was updated successfully, but these errors were encountered:
You should be able to comment the break; out if you have exceptions turned on. Will leave this open to try and fix for PHP7.
Sorry, something went wrong.
any news or other known issues?
Since the Project seems to be abandoned, I have created a new fork, where the issue has been fixed: https://github.com/Hrnkas/epiphany
No branches or pull requests
There is a
break;
on line 101 that isn't in a loop or switch, this causes an error in PHP 7.0.It is accompanied by this comment:
need to simulate same behavior if exceptions are turned off
Is it safe to simply comment out line 101?
The text was updated successfully, but these errors were encountered: