Phalcon\Build\Util::normalize PHP Méthode

normalize() public static méthode

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