|
@@ -11,7 +11,7 @@
|
|
|
|
|
|
namespace Symfony\Component\Console\Output;
|
|
|
|
|
|
-use Symfony\Component\Console\Formatter\OutputFormatter;
|
|
|
+use Symfony\Component\Console\Formatter\OutputFormatterInterface;
|
|
|
|
|
|
/**
|
|
|
* StreamOutput writes the output to a given stream.
|
|
@@ -45,7 +45,7 @@ class StreamOutput extends Output
|
|
|
*
|
|
|
* @api
|
|
|
*/
|
|
|
- public function __construct($stream, $verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatter $formatter = null)
|
|
|
+ public function __construct($stream, $verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
|
|
|
{
|
|
|
if (!is_resource($stream) || 'stream' !== get_resource_type($stream)) {
|
|
|
throw new \InvalidArgumentException('The StreamOutput class needs a stream as its first argument.');
|