[2.0] Fix typo in variable name of AbstractFileDriver::getAllClassNames()
This commit is contained in:
parent
cfb42d2eb9
commit
4e3edec899
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ abstract class AbstractFileDriver implements Driver
|
||||||
*/
|
*/
|
||||||
public function getAllClassNames()
|
public function getAllClassNames()
|
||||||
{
|
{
|
||||||
$clasNames = array();
|
$classNames = array();
|
||||||
foreach ((array)$this->_paths as $path) {
|
foreach ((array)$this->_paths as $path) {
|
||||||
if (is_dir($path)) {
|
if (is_dir($path)) {
|
||||||
$files = glob($path . '/*');
|
$files = glob($path . '/*');
|
||||||
|
|
Loading…
Add table
Reference in a new issue