1
0
mirror of synced 2024-12-13 06:46:03 +03:00

[2.0] Adding getDrivers() method to DriverChain

This commit is contained in:
jwage 2010-02-26 01:27:10 +00:00
parent 3a778e624f
commit c8ef304bcc

View File

@ -56,6 +56,16 @@ class DriverChain implements Driver
$this->_drivers[$namespace] = $nestedDriver;
}
/**
* Get the array of nested drivers
*
* @return array $drivers
*/
public function getDrivers()
{
return $this->_drivers;
}
/**
* Loads the metadata for the specified class into the provided container.
*