3 namespace BookStack\Util;
5 use League\Flysystem\WhitespacePathNormalizer;
8 * Utility to normalize (potentially) user provided file paths
9 * to avoid things like directory traversal.
11 class FilePathNormalizer
13 public static function normalize(string $path): string
15 return (new WhitespacePathNormalizer())->normalizePath($path);