Gets the Bundle directory path.
@api
string The Bundle absolute path
Overrides BundleInterface::getPath
public function getPath() {
if (null === $this->reflected) {
$this->reflected = new \ReflectionObject($this);
}
return dirname($this->reflected
->getFileName());
}