Browse Source

[HttpKernel] fixed typo

Fabien Potencier 14 năm trước cách đây
mục cha
commit
bfd57c5cf0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Symfony/Component/HttpKernel/Util/Filesystem.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Util/Filesystem.php

@@ -115,7 +115,7 @@ class Filesystem
         $currentUmask = umask();
         umask($umask);
 
-        foreach ($this->toIterator(files) as $file) {
+        foreach ($this->toIterator($files) as $file) {
             chmod($file, $mode);
         }