
| Current Path : /var/www/html/dinarosun/vendor/consolidation/log/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/dinarosun/vendor/consolidation/log/src/SettableLogOutputStreamInterface.php |
<?php
namespace Consolidation\Log;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Interface that indicates that a logger's output / error streams
* are settable.
*
* @author Greg Anderson <greg.1.anderson@greenknowe.org>
*/
interface SettableLogOutputStreamInterface
{
/**
* @param OutputInterface $output
*/
public function setOutputStream($output);
/**
* @param OutputInterface $error
*/
public function setErrorStream($error);
}