1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] Fix typo in variable name of AbstractFileDriver::getAllClassNames()

This commit is contained in:
beberlei 2010-01-27 19:21:07 +00:00
parent cfb42d2eb9
commit 4e3edec899

View file

@ -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 . '/*');