From df04fc3c8f11a53608650999965198d665621afc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 27 Oct 2017 18:23:35 +0200 Subject: [PATCH] Fix tabs to spaces --- Models/PackageInfoManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/PackageInfoManager.php b/Models/PackageInfoManager.php index 66b9d1d..60e8e6b 100644 --- a/Models/PackageInfoManager.php +++ b/Models/PackageInfoManager.php @@ -89,7 +89,7 @@ class PackageInfoManager */ public function update() /* : void */ { - if ($this->path === false || !file_exists($this->path)) { + if ($this->path === false || !file_exists($this->path)) { throw new PathException((string) $this->path); } file_put_contents($this->path, json_encode($this->info, JSON_PRETTY_PRINT));