bootstrap.php 479 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * This file is part of the Humbug package.
  4. *
  5. * (c) 2015 Pádraic Brady <padraic.brady@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  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';