foreach ($expected_lines as $expected_line) {
    if (!preg_match("/$expected_line\s*/", $contents)) {
        $match = false;
        $unmatched = $expected_line;
        break;
    }
}
This is my code which give me error
PHPUNIT_FRAMEWORK_ERROR_WARNING
preg_match(): Unknown modifier 'G'
Let me know where i m gone wrong
 
     
    