smt / streams
Another abstraction over output
v1.0.0
2015-08-11 13:35 UTC
Requires
- php: >=5.4
- symfony/console: ~2
This package is not auto-updated.
Last update: 2024-10-30 10:08:51 UTC
README
Another abstraction over output.
Key-features
Redirecting to another stream.
Installation
composer require smt/streams
Usage
use Smt\Streams\SymfonyOutputStream;
use Smt\Streams\FileStream;
use Smt\Streams\DummyStream;
$outStream = new SymfonyOutputStream($out);
$outStream
->write('Hello')
->redirect(new FileStream('truth.txt'))
->write('Time')
->write(' to')
->write(' take')
->write(' over')
->write(' the')
->setRedirectMode(FileStream::WRITE_REDIRECT)
->writeln('world')
;
// Symfony out - "Hello world"
// truth.txt - "Time to take over the world"