diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-04 21:33:05 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-04 21:33:05 -0500 |
commit | 135b921db75da5995eab7e36393ecd4d2b0bc66f (patch) | |
tree | 46efc60fcf1f9d5c57ab1fb9418c2acfbda0698a /vendor/swiftmailer/swift_required.php | |
parent | 850645dd6b22f5b495d1680e0b49540e0ebf9bd3 (diff) |
Switch to composer
Diffstat (limited to 'vendor/swiftmailer/swift_required.php')
-rw-r--r-- | vendor/swiftmailer/swift_required.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/swiftmailer/swift_required.php b/vendor/swiftmailer/swift_required.php deleted file mode 100644 index d64d26ed..00000000 --- a/vendor/swiftmailer/swift_required.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -/* - * This file is part of SwiftMailer. - * (c) 2004-2009 Chris Corbyn - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -/* - * Autoloader and dependency injection initialization for Swift Mailer. - */ - -if (class_exists('Swift', false)) { - return; -} - -// Load Swift utility class -require dirname(__FILE__) . '/classes/Swift.php'; - -if (!function_exists('_swiftmailer_init')) { - function _swiftmailer_init() - { - require dirname(__FILE__) . '/swift_init.php'; - } -} - -// Start the autoloader and lazy-load the init script to set up dependency injection -Swift::registerAutoload('_swiftmailer_init'); |