From b1462b06256c40627a6b69c771ab67e706b00a8e Mon Sep 17 00:00:00 2001 From: hakito Date: Thu, 10 Oct 2013 20:34:28 +0200 Subject: [PATCH] Minor fix of previous commit --- sample/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/bootstrap.php b/sample/bootstrap.php index 2b28aa0..48ead06 100644 --- a/sample/bootstrap.php +++ b/sample/bootstrap.php @@ -5,7 +5,7 @@ // Include the composer autoloader $composerAutoload = dirname(dirname(dirname(__DIR__))) . '/autoload.php'; -if (file_exists($composerAutoload)) +if (!file_exists($composerAutoload)) { $composerAutoload = __DIR__ .'/vendor/autoload.php';