This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
php-frs/lib/Frs/Output/Transport/StdoutTransport.php
2016-08-04 15:35:50 +02:00

19 lines
280 B
PHP

<?php
namespace Frs\Output\Transport;
class StdoutTransport implements TransportInterface
{
private $content;
public function setContent($content)
{
$this->content = $content;
}
public function transmit()
{
echo $this->content;
}
}