File: StreamCollector.php

package info (click to toggle)
libphp-swiftmailer 6.3.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,164 kB
  • sloc: php: 27,203; sh: 36; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Swift_StreamCollector
{
    public $content = '';

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