@@ -1013,10 +1013,6 @@ protected function getLineCoverageForBankAccount(): CodeCoverage
10131013 ->method ('stop ' )
10141014 ->willReturn (...$ data );
10151015
1016- $ stub
1017- ->method ('isXdebug ' )
1018- ->willReturn (true );
1019-
10201016 $ filter = new Filter ;
10211017 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
10221018
@@ -1099,10 +1095,6 @@ protected function getPathCoverageForBankAccount(): CodeCoverage
10991095 ->method ('stop ' )
11001096 ->willReturn (...$ data );
11011097
1102- $ stub
1103- ->method ('isXdebug ' )
1104- ->willReturn (true );
1105-
11061098 $ filter = new Filter ;
11071099 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
11081100
@@ -1187,10 +1179,6 @@ protected function getPathCoverageForSourceWithoutNamespace(): CodeCoverage
11871179 ->method ('stop ' )
11881180 ->willReturn (...$ data );
11891181
1190- $ stub
1191- ->method ('isXdebug ' )
1192- ->willReturn (true );
1193-
11941182 $ filter = new Filter ;
11951183 $ filter ->includeFile (TEST_FILES_PATH . 'source_without_namespace.php ' );
11961184
@@ -1271,10 +1259,6 @@ protected function getLineCoverageForNamespacedBankAccount(): CodeCoverage
12711259 ->method ('stop ' )
12721260 ->willReturn (...$ data );
12731261
1274- $ stub
1275- ->method ('isXdebug ' )
1276- ->willReturn (true );
1277-
12781262 $ filter = new Filter ;
12791263 $ filter ->includeFile (TEST_FILES_PATH . 'NamespacedBankAccount.php ' );
12801264
@@ -1348,10 +1332,6 @@ protected function getLineCoverageForBankAccountForFirstTwoTests(): CodeCoverage
13481332 ->method ('stop ' )
13491333 ->willReturn (...$ data );
13501334
1351- $ stub
1352- ->method ('isXdebug ' )
1353- ->willReturn (true );
1354-
13551335 $ filter = new Filter ;
13561336 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
13571337
@@ -1402,10 +1382,6 @@ protected function getLineCoverageForBankAccountForLastTwoTests(): CodeCoverage
14021382 ->method ('stop ' )
14031383 ->willReturn ($ data [2 ], $ data [3 ]);
14041384
1405- $ stub
1406- ->method ('isXdebug ' )
1407- ->willReturn (true );
1408-
14091385 $ filter = new Filter ;
14101386 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
14111387
@@ -1516,10 +1492,6 @@ protected function getPathCoverageForBankAccountForFirstTwoTests(): CodeCoverage
15161492 ->method ('stop ' )
15171493 ->willReturn (...$ data );
15181494
1519- $ stub
1520- ->method ('isXdebug ' )
1521- ->willReturn (true );
1522-
15231495 $ filter = new Filter ;
15241496 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
15251497
@@ -1572,10 +1544,6 @@ protected function getPathCoverageForBankAccountForLastTwoTests(): CodeCoverage
15721544 ->method ('stop ' )
15731545 ->willReturn ($ data [2 ], $ data [3 ]);
15741546
1575- $ stub
1576- ->method ('isXdebug ' )
1577- ->willReturn (true );
1578-
15791547 $ filter = new Filter ;
15801548 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
15811549
@@ -1851,10 +1819,6 @@ protected function setUpXdebugStubForFileWithIgnoredLines(): Driver
18511819 ],
18521820 ));
18531821
1854- $ stub
1855- ->method ('isXdebug ' )
1856- ->willReturn (true );
1857-
18581822 return $ stub ;
18591823 }
18601824
@@ -1892,10 +1856,6 @@ protected function setUpXdebugStubForFileWithEval(): Driver
18921856 ],
18931857 ));
18941858
1895- $ stub
1896- ->method ('isXdebug ' )
1897- ->willReturn (true );
1898-
18991859 return $ stub ;
19001860 }
19011861
@@ -1937,10 +1897,6 @@ protected function setUpXdebugStubForClassWithAnonymousFunction(): Driver
19371897 ],
19381898 ));
19391899
1940- $ stub
1941- ->method ('isXdebug ' )
1942- ->willReturn (true );
1943-
19441900 return $ stub ;
19451901 }
19461902
@@ -1977,10 +1933,6 @@ protected function setUpXdebugStubForClassWithOutsideFunction(): Driver
19771933 ],
19781934 ));
19791935
1980- $ stub
1981- ->method ('isXdebug ' )
1982- ->willReturn (true );
1983-
19841936 return $ stub ;
19851937 }
19861938
@@ -2008,10 +1960,6 @@ protected function getCoverageForFilesWithUncoveredIncluded(): CodeCoverage
20081960 ->method ('stop ' )
20091961 ->willReturn (...$ data );
20101962
2011- $ stub
2012- ->method ('isXdebug ' )
2013- ->willReturn (true );
2014-
20151963 $ filter = new Filter ;
20161964 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
20171965 $ filter ->includeFile (TEST_FILES_PATH . 'NamespacedBankAccount.php ' );
@@ -2088,10 +2036,6 @@ protected function getCoverageForFilesWithUncoveredExcluded(): CodeCoverage
20882036 ->method ('stop ' )
20892037 ->willReturn (...$ data );
20902038
2091- $ stub
2092- ->method ('isXdebug ' )
2093- ->willReturn (true );
2094-
20952039 $ filter = new Filter ;
20962040 $ filter ->includeFile (TEST_FILES_PATH . 'BankAccount.php ' );
20972041 $ filter ->includeFile (TEST_FILES_PATH . 'NamespacedBankAccount.php ' );
0 commit comments