From 9de4e927c76a49086355334bb47588271bd6d652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 22 Jan 2016 09:04:14 +0200 Subject: [PATCH] truepath can be private --- lib/Minify/ImportProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Minify/ImportProcessor.php b/lib/Minify/ImportProcessor.php index ce8e099..715a9bf 100644 --- a/lib/Minify/ImportProcessor.php +++ b/lib/Minify/ImportProcessor.php @@ -188,7 +188,7 @@ class Minify_ImportProcessor { * @return string The resolved path, it might not exist. * @see http://stackoverflow.com/questions/4049856/replace-phps-realpath */ - public function truepath($path) + private function truepath($path) { // whether $path is unix or not $unipath = strlen($path) == 0 || $path{0} != '/';