Code Duplication    Length = 8-9 lines in 2 locations

src/Writer/Standard.php 2 locations

@@ 71-79 (lines=9) @@
68
                    $value['current']['result']
69
                ));
70
71
                if ($value['base']['result'] === 'success' &&
72
                    $value['current']['message'] &&
73
                    $this->verbosity >= Output::VERBOSITY_VERBOSE) {
74
                    $this->style->text(sprintf(
75
                        "\t<fg=yellow>%s</>: <fg=green>%s</>",
76
                            $value['current']['type'],
77
                            $value['current']['message']
78
                    ));
79
                }
80
81
                if ($value['base']['result'] === 'success' &&
82
                    $value['current']['info'] &&
@@ 81-88 (lines=8) @@
78
                    ));
79
                }
80
81
                if ($value['base']['result'] === 'success' &&
82
                    $value['current']['info'] &&
83
                    $this->verbosity >= Output::VERBOSITY_VERY_VERBOSE) {
84
                    $this->style->text(sprintf(
85
                        "\t<fg=cyan>%s</>",
86
                        $value['current']['info']
87
                    ));
88
                }
89
90
                continue;
91
            }