浏览代码

fix whitespace problem

develop 14 年之前
父节点
当前提交
1daedcc6fc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php

+ 1 - 1
src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php

@@ -37,7 +37,7 @@ class AnnotationDirectoryLoader extends AnnotationFileLoader
         $dir = $this->locator->locate($path);
 
         $collection = new RouteCollection();
-	$collection->addResource(new DirectoryResource($dir));
+        $collection->addResource(new DirectoryResource($dir));
         foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($dir), \RecursiveIteratorIterator::LEAVES_ONLY) as $file) {
             if (!$file->isFile() || '.php' !== substr($file->getFilename(), -4)) {
                 continue;