summaryrefslogtreecommitdiff
path: root/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php
blob: 7f079d983739015b48e477dd7b8baccbccfa8950 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Swift_StreamCollector
{
    public $content = '';

    public function __invoke($arg)
    {
        $this->content .= $arg;
    }
}