summaryrefslogtreecommitdiffstats
path: root/bootstrap.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-10-30 18:39:23 +0100
committerRemi Collet <fedora@famillecollet.com>2012-10-30 18:39:23 +0100
commite2ad269d98e16ab12cd70683e13660e1caa79b51 (patch)
treed37d6852c7d327bc5392761bdffc90fe5e126f60 /bootstrap.php
parentf41eb83d57bb5af5d9d7f27e38118cb10317b029 (diff)
php-symfony2-EventDispatcher: sync with rawhide, update to 2.1.3
Diffstat (limited to 'bootstrap.php')
-rw-r--r--bootstrap.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/bootstrap.php b/bootstrap.php
deleted file mode 100644
index fefa0b3..0000000
--- a/bootstrap.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-spl_autoload_register(function ($class) {
- if (0 === strpos(ltrim($class, '/'), 'Symfony\Component')) {
- $file = substr(str_replace('\\', '/', $class), strlen('Symfony\Component')).'.php';
- if (file_exists(__DIR__.'/../..'.$file)) {
- # Run from source tree
- require_once __DIR__.'/../..'.$file;
- } else {
- # Run from install dir
- require_once 'Symfony/Component'.$file;
- }
- }
-});