Phalcon\Build\Util::normalize PHP Method

normalize() public static method

.', '.'.
public static normalize ( $filePath ) : string
$filePath
return string
    public static function normalize($filePath)
    {
        $filePath = realpath($filePath);
        $filePath = str_replace('\\', DIRECTORY_SEPARATOR, $filePath);
        return $filePath;
    }