bootstrap.php 477 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Humbug
  4. *
  5. * @category Humbug
  6. * @package Humbug
  7. * @copyright Copyright (c) 2015 Pádraic Brady (http://blog.astrumfutura.com)
  8. * @license https://github.com/padraic/phar-updater/blob/master/LICENSE New BSD License
  9. */
  10. error_reporting(E_ALL);
  11. if (function_exists('date_default_timezone_set')
  12. && function_exists('date_default_timezone_get')) {
  13. date_default_timezone_set(@date_default_timezone_get());
  14. }
  15. require __DIR__ . '/../vendor/autoload.php';