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
{{ message }}
This repository has been archived by the owner on Jun 2, 2021. It is now read-only.
I found this issue, It breaks compilation of zephir.
php code: protected $token_b = "/(\r\n)+|(\n|\r)+/";
Converted code:- protected token_b = "/( )+|( | )+/";
It converts \r\n as a new line non printable character and this breaks compilation.
The text was updated successfully, but these errors were encountered:
I found this issue, It breaks compilation of zephir.
php code:
protected $token_b = "/(\r\n)+|(\n|\r)+/";
Converted code:-
protected token_b = "/( )+|( | )+/";
It converts \r\n as a new line non printable character and this breaks compilation.
The text was updated successfully, but these errors were encountered: