Code Duplication    Length = 13-13 lines in 2 locations

src/Logger/ConsoleLogger.php 2 locations

@@ 88-100 (lines=13) @@
85
     *
86
     * @param string $path
87
     */
88
    public function outputSuccess(string $path)
89
    {
90
        if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
91
            $this->io->writeln(
92
                sprintf(
93
                    ' * [<info>OK</info>] %s',
94
                    $path
95
                )
96
            );
97
        }
98
99
        $this->progressBar->advance();
100
    }
101
102
    /**
103
     * Output scoping failure message.
@@ 107-119 (lines=13) @@
104
     *
105
     * @param string $path
106
     */
107
    public function outputFail(string $path)
108
    {
109
        if ($this->io->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
110
            $this->io->writeln(
111
                sprintf(
112
                    ' * [<error>FA</error>] %s',
113
                    $path
114
                )
115
            );
116
        }
117
118
        $this->progressBar->advance();
119
    }
120
121
    public function outputScopingEnd()
122
    {