Code Duplication    Length = 7-7 lines in 2 locations

src/Console/Console.php 2 locations

@@ 50-56 (lines=7) @@
47
        return $this;
48
    }
49
50
    public function stdout(WriterInterface $out = null)
51
    {
52
        if (null === $out)
53
            return $this->out;
54
        $this->out = $out;
55
        return $this;
56
    }
57
58
    public function stderr(WriterInterface $err = null)
59
    {
@@ 58-64 (lines=7) @@
55
        return $this;
56
    }
57
58
    public function stderr(WriterInterface $err = null)
59
    {
60
        if (null === $err)
61
            return $this->err;
62
        $this->err = $err;
63
        return $this;
64
    }
65
66
    public function outTransformer(TransformerInterface $value = null)
67
    {