فهرست منبع

tab to spaces

stealth35 14 سال پیش
والد
کامیت
dedf9b4fc0
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/Symfony/Component/Translation/Loader/CsvFileLoader.php

+ 2 - 2
src/Symfony/Component/Translation/Loader/CsvFileLoader.php

@@ -32,9 +32,9 @@ class CsvFileLoader extends ArrayLoader implements LoaderInterface
         $messages = array();
         
         try {
-        	$file = new \SplFileObject($resource, 'rb');
+            $file = new \SplFileObject($resource, 'rb');
         } catch(\RuntimeException $e) {
-        	throw new \InvalidArgumentException(sprintf('Error opening file "%s".', $resource));
+            throw new \InvalidArgumentException(sprintf('Error opening file "%s".', $resource));
         }
         
         $file->setFlags(\SplFileObject::READ_CSV | \SplFileObject::SKIP_EMPTY);