Explorar el Código

fixed coding standards

Pavel Campr hace 13 años
padre
commit
15910a015b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/Symfony/Component/Finder/Finder.php

+ 2 - 2
src/Symfony/Component/Finder/Finder.php

@@ -502,8 +502,8 @@ class Finder implements \IteratorAggregate
         }
 
         if ($this->sort) {
-            $iterator_aggregate = new Iterator\SortableIterator($iterator, $this->sort);
-            $iterator = $iterator_aggregate->getIterator();
+            $iteratorAggregate = new Iterator\SortableIterator($iterator, $this->sort);
+            $iterator = $iteratorAggregate->getIterator();
         }
 
         return $iterator;