File: StreamCollector.php

package info (click to toggle)
libphp-swiftmailer 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,492 kB
  • sloc: php: 26,539; xml: 22; sh: 18; makefile: 2
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;
    }
}