Gets the bundle option as array.
array
public function getBundleOption() {
// Support passing the bundle as string, but force it to be an array.
if (!is_array($this->bundle)) {
$this->bundle = array(
$this->bundle,
);
}
return $this->bundle;
}