File tree Expand file tree Collapse file tree 1 file changed +0
-28
lines changed Expand file tree Collapse file tree 1 file changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -615,32 +615,4 @@ private function initializeData(): void
615615 $ this ->append ($ this ->driver ->stop (), self ::UNCOVERED_FILES );
616616 }
617617 }
618-
619- private function coverageToCodeUnits (RawCodeCoverageData $ rawData ): array
620- {
621- $ codeUnits = [];
622-
623- foreach ($ rawData ->lineCoverage () as $ filename => $ lines ) {
624- foreach ($ lines as $ line => $ flag ) {
625- if ($ flag === 1 ) {
626- $ codeUnits [] = $ this ->wizard ->lookup ($ filename , $ line );
627- }
628- }
629- }
630-
631- return array_unique ($ codeUnits );
632- }
633-
634- private function linesToCodeUnits (array $ data ): array
635- {
636- $ codeUnits = [];
637-
638- foreach ($ data as $ filename => $ lines ) {
639- foreach ($ lines as $ line ) {
640- $ codeUnits [] = $ this ->wizard ->lookup ($ filename , $ line );
641- }
642- }
643-
644- return array_unique ($ codeUnits );
645- }
646618}
You can’t perform that action at this time.
0 commit comments