added MessageDataCollector forward compatibility

This commit is contained in:
Lukas Kahwe Smith 2011-10-31 16:15:10 +01:00
parent d233c44e98
commit 10eed30cde

View File

@ -0,0 +1,24 @@
<?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.
*/
namespace Symfony\Bridge\Swiftmailer\DataCollector;
use Symfony\Bundle\SwiftmailerBundle\DataCollector\MessageDataCollector as BaseMessageDataCollector;
/**
* MessageDataCollector.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author ClŽment JOBEILI <clement.jobeili@gmail.com>
*/
class MessageDataCollector extends BaseMessageDataCollector
{
}