|
@@ -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
|
|
|
+{
|
|
|
+}
|