El RIDO 5 лет назад
Родитель
Сommit
abb2b90e9b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      lib/Persistence/AbstractPersistence.php

+ 2 - 2
lib/Persistence/AbstractPersistence.php

@@ -117,8 +117,8 @@ abstract class AbstractPersistence
     protected static function _store($filename, $data)
     {
         self::_initialize();
-        $file = self::$_path . DIRECTORY_SEPARATOR . $filename;
-        $fileCreated = true;
+        $file         = self::$_path . DIRECTORY_SEPARATOR . $filename;
+        $fileCreated  = true;
         $writtenBytes = 0;
         if (!is_file($file)) {
             $fileCreated = @touch($file);