gmarche/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php

12 lines
145 B
PHP

<?php
class Swift_StreamCollector
{
public $content = '';
public function __invoke($arg)
{
$this->content .= $arg;
}
}