1
0
mirror of synced 2025-02-20 22:23:14 +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()
{
$clasNames = array();
$classNames = array();
foreach ((array)$this->_paths as $path) {
if (is_dir($path)) {
$files = glob($path . '/*');