<?phpnamespacePhpParser;require__DIR__.'/../vendor/autoload.php';functioncanonicalize($str){// trim from both sides$str=trim($str);// normalize EOL to \n$str=str_replace(array("\r\n","\r"),"\n",$str);// trim right side of all linesreturnimplode("\n",array_map('rtrim',explode("\n",$str)));}