Browse Source

Merge pull request #4227 from joshmanders/patch-1

Fix break from #4226
Taylor Otwell 7 years ago
parent
commit
164acc8d7a
2 changed files with 3 additions and 1 deletions
  1. 2 0
      artisan
  2. 1 1
      phpunit.xml

+ 2 - 0
artisan

@@ -1,6 +1,8 @@
 #!/usr/bin/env php
 <?php
 
+define('LARAVEL_START', microtime(true));
+
 /*
 |--------------------------------------------------------------------------
 | Register The Auto Loader

+ 1 - 1
phpunit.xml

@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <phpunit backupGlobals="false"
          backupStaticAttributes="false"
-         bootstrap="bootstrap/autoload.php"
+         bootstrap="vendor/autoload.php"
          colors="true"
          convertErrorsToExceptions="true"
          convertNoticesToExceptions="true"