[Nostromo] SensioLabs Insights

This commit is contained in:
Andrés Montañez
2016-12-31 04:32:47 -03:00
parent 6a4816a61d
commit 233faed09f
3 changed files with 8 additions and 5 deletions
+5 -1
View File
@@ -2,7 +2,11 @@
<?php
date_default_timezone_set('UTC');
require __DIR__ . '/../../../autoload.php';
if (file_exists(__DIR__ . '/../../../autoload.php')) {
require __DIR__ . '/../../../autoload.php';
} elseif (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require __DIR__ . '/../vendor/autoload.php';
}
use Mage\MageApplication;