File Manager

Current Directory: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Skipper/FileSystem
Viewing File: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Skipper/FileSystem/PathNormalizer.php
<?php declare (strict_types=1); namespace Rector\Skipper\FileSystem; final class PathNormalizer { public static function normalize(string $path) : string { return \str_replace('\\', '/', $path); } }