From 8c810a18189dd76ea0748fd520eaa7d211933f18 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Mon, 11 May 2015 17:56:01 +0200 Subject: [PATCH] Clean code. --- src/_h5ai/server/php/inc/class-bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_h5ai/server/php/inc/class-bootstrap.php b/src/_h5ai/server/php/inc/class-bootstrap.php index 8a75f52e..b633d895 100644 --- a/src/_h5ai/server/php/inc/class-bootstrap.php +++ b/src/_h5ai/server/php/inc/class-bootstrap.php @@ -49,7 +49,7 @@ class Bootstrap { foreach ($this->classpaths as $classpath) { $file = $this->basepath . $classpath . '/' . $filename; if (file_exists($file)) { - require_once($file); + require_once $file; return true; } } @@ -57,6 +57,6 @@ class Bootstrap { private function once($lib) { - require_once($this->basepath . '/' . $lib . '.php'); + require_once $this->basepath . '/' . $lib . '.php'; } }