dryabov / phpregexp

Support of regular expressions parsing in PhpStorm
MIT License
4 stars 2 forks source link

False positive redundant escape #3

Closed nazar-pc closed 9 years ago

nazar-pc commented 9 years ago
preg_match_all('/"(http[s]?:\/\/.+)"/Uims', $content, $files);
//                          ^ Here

In fact it is not redundant

dryabov commented 9 years ago

Should be fixed in 0.9.2 (will be available after moderation, or install latest phpregexp.jar from this repository).

nazar-pc commented 9 years ago

Thanks!