File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,22 @@ public function addCoveringTest($id, array $lines)
92
92
$ this ->lines ->addCoveringTest ($ id , $ lines );
93
93
}
94
94
95
+ /**
96
+ * @return PHP_CodeCoverage_Data_FunctionCollection
97
+ */
98
+ public function getFunctions ()
99
+ {
100
+ return $ this ->functions ;
101
+ }
102
+
103
+ /**
104
+ * @return PHP_CodeCoverage_Data_LineCollection
105
+ */
106
+ public function getLines ()
107
+ {
108
+ return $ this ->lines ;
109
+ }
110
+
95
111
/**
96
112
* @return string
97
113
*/
Original file line number Diff line number Diff line change @@ -96,6 +96,22 @@ public function addCoveringTest($id)
96
96
$ this ->coveringTests [] = $ id ;
97
97
}
98
98
99
+ /**
100
+ * @return string[]
101
+ */
102
+ public function getCoveringTests ()
103
+ {
104
+ return $ this ->coveringTests ;
105
+ }
106
+
107
+ /**
108
+ * @return PHP_CodeCoverage_Data_OpcodeCollection
109
+ */
110
+ public function getOpcodes ()
111
+ {
112
+ return $ this ->opcodes ;
113
+ }
114
+
99
115
/**
100
116
* @return boolean
101
117
*/
You can’t perform that action at this time.
0 commit comments