Code Duplication    Length = 8-8 lines in 3 locations

lib/Util/Phpunit/MasterListener.php 3 locations

@@ 94-101 (lines=8) @@
91
        $this->play(__FUNCTION__, func_get_args());
92
    }
93
94
    public function addFailure(Test $test, AssertionFailedError $e, $time)
95
    {
96
        $this->replay[] = [
97
            'method' => __FUNCTION__,
98
            'args'  => func_get_args()
99
        ];
100
        $this->play(__FUNCTION__, func_get_args());
101
    }
102
103
    public function addIncompleteTest(Test $test, Exception $e, $time)
104
    {
@@ 148-155 (lines=8) @@
145
        $this->play(__FUNCTION__, func_get_args());
146
    }
147
148
    public function startTest(Test $test)
149
    {
150
        $this->replay[] = [
151
            'method' => __FUNCTION__,
152
            'args'  => func_get_args()
153
        ];
154
        $this->play(__FUNCTION__, func_get_args());
155
    }
156
157
    public function endTest(Test $test, $time)
158
    {
@@ 157-164 (lines=8) @@
154
        $this->play(__FUNCTION__, func_get_args());
155
    }
156
157
    public function endTest(Test $test, $time)
158
    {
159
        $this->replay[] = [
160
            'method' => __FUNCTION__,
161
            'args'  => func_get_args()
162
        ];
163
        $this->play(__FUNCTION__, func_get_args());
164
    }
165
166
}
167