Passed
Push — main ( a6366b...47f44b )
by Dimitri
11:49
created
Handlers/FileVarExportHandler.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 final class FileVarExportHandler extends BaseHandler
17 17
 {
18
-	private string $path = FRAMEWORK_STORAGE_PATH . 'cache';
18
+ private string $path = FRAMEWORK_STORAGE_PATH . 'cache';
19 19
 
20 20
     /**
21 21
      * {@inheritDoc}
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * {@inheritDoc}
38
-	 *
39
-	 * @param array|bool|float|int|object|string|null $value
38
+     *
39
+     * @param array|bool|float|int|object|string|null $value
40 40
      */
41 41
     public function set(string $key, mixed $value, null|DateInterval|int $ttl = null): bool
42 42
     {
@@ -59,13 +59,13 @@  discard block
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * {@inheritDoc}
62
-	 *
63
-	 * @return array|bool|float|int|object|string|null
62
+     *
63
+     * @return array|bool|float|int|object|string|null
64 64
      */
65 65
     public function get(string $key, mixed $default = null): mixed
66 66
     {
67
-		return @include $this->path . "/{$key}";
68
-	}
67
+  return @include $this->path . "/{$key}";
68
+ }
69 69
 
70 70
     /**
71 71
      * {@inheritDoc}
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function delete(string $key): bool
98 98
     {
99
-		return @unlink($this->path . "/{$key}");
99
+  return @unlink($this->path . "/{$key}");
100 100
     }
101 101
 
102 102
     /**
@@ -112,21 +112,21 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function clear(): bool
114 114
     {
115
-		if (! is_dir($this->path)) {
116
-			return false;
117
-		}
118
-
119
-		$files = glob($this->path . '/*');
120
-		foreach ($files as $file) {
121
-			if (is_file($file)) {
122
-				unlink($file);
123
-			} elseif (is_dir($file)) {
124
-				$this->clear($file);
125
-			}
126
-		}
127
-
128
-		return rmdir($this->path);
129
-	}
115
+  if (! is_dir($this->path)) {
116
+   return false;
117
+  }
118
+
119
+  $files = glob($this->path . '/*');
120
+  foreach ($files as $file) {
121
+   if (is_file($file)) {
122
+    unlink($file);
123
+   } elseif (is_dir($file)) {
124
+    $this->clear($file);
125
+   }
126
+  }
127
+
128
+  return rmdir($this->path);
129
+ }
130 130
 
131 131
     /**
132 132
      * {@inheritDoc}
Please login to merge, or discard this patch.