We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dcd293 commit 4e74830Copy full SHA for 4e74830
src/Illuminate/Foundation/ComposerScripts.php
@@ -63,7 +63,9 @@ public static function prePackageUninstall(PackageEvent $event)
63
64
require_once $vendorDir.'/autoload.php';
65
66
- define('LARAVEL_START', microtime(true));
+ if (! defined('LARAVEL_START')) {
67
+ define('LARAVEL_START', microtime(true));
68
+ }
69
70
/** @var Application $app */
71
$app = require_once $bootstrapFile;
0 commit comments