diff --git a/app/Engine/File.php b/app/Engine/File.php index 6a1a10e..4cb6e7a 100644 --- a/app/Engine/File.php +++ b/app/Engine/File.php @@ -57,4 +57,14 @@ class File { $this->paths[] = $path; } + + /** + * Clear all search paths. + * + * @return void + */ + public function clear(): void + { + $this->paths = []; + } }