Stop collection of code coverage information.
boolean $append:
array
public function stop($append = TRUE) {
if (!is_bool($append)) {
throw PHP_CodeCoverage_Util_InvalidArgumentHelper::factory(1, 'boolean');
}
$data = $this->driver
->stop();
$this
->append($data, NULL, $append);
$this->currentId = NULL;
return $data;
}