소스 검색

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;