Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Skipper
/
FileSystem
/
Filename :
PathNormalizer.php
back
Copy
<?php declare (strict_types=1); namespace Rector\Skipper\FileSystem; final class PathNormalizer { public static function normalize(string $path) : string { return \str_replace('\\', '/', $path); } }