Passed
Push — main ( de8a20...991fa6 )
by Sílvio
01:14 queued 28s
created
Examples/example08.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@
 block discarded – undo
23 23
     echo "Cache Found: ";
24 24
     print_r($Cacheer->getCache($cacheKey));
25 25
 } else {
26
-  echo $Cacheer->getMessage();
26
+    echo $Cacheer->getMessage();
27 27
 }
28 28
 
29 29
 // Renovando os dados do cache
30 30
 $Cacheer->renewCache($cacheKey, 3600);
31 31
 
32 32
 if($Cacheer->isSuccess()){
33
-  echo $Cacheer->getMessage() . PHP_EOL;
33
+    echo $Cacheer->getMessage() . PHP_EOL;
34 34
 } else {
35
-  echo $Cacheer->getMessage() . PHP_EOL;
35
+    echo $Cacheer->getMessage() . PHP_EOL;
36 36
 
37 37
 }
38 38
\ No newline at end of file
Please login to merge, or discard this patch.
Examples/example07.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     echo "Cache Found: ";
30 30
     print_r($Cacheer->getCache($cacheKey));
31 31
 } else {
32
-  echo $Cacheer->getMessage();
32
+    echo $Cacheer->getMessage();
33 33
 }
34 34
 
35 35
 
@@ -40,6 +40,6 @@  discard block
 block discarded – undo
40 40
     echo $Cacheer->getMessage() . PHP_EOL;
41 41
     print_r($Cacheer->getCache($cacheKey));
42 42
 } else {
43
-  echo $Cacheer->getMessage();
43
+    echo $Cacheer->getMessage();
44 44
 }
45 45
 
Please login to merge, or discard this patch.
src/CacheStore/RedisCacheStore.php 1 patch
Indentation   +187 added lines, -187 removed lines patch added patch discarded remove patch
@@ -16,93 +16,93 @@  discard block
 block discarded – undo
16 16
  */
17 17
 class RedisCacheStore implements CacheerInterface
18 18
 {
19
-  /** @var */
20
-  private $redis;
19
+    /** @var */
20
+    private $redis;
21 21
 
22
-  /** @param string $namespace */
23
-  private string $namespace = '';
22
+    /** @param string $namespace */
23
+    private string $namespace = '';
24 24
 
25
-  /**
26
-  * @var CacheLogger
27
-  */
28
-  private $logger = null;
25
+    /**
26
+     * @var CacheLogger
27
+     */
28
+    private $logger = null;
29 29
 
30
-  /**
31
-  * @var string
32
-  */
33
-  private string $message = '';
30
+    /**
31
+     * @var string
32
+     */
33
+    private string $message = '';
34 34
 
35
-  /**
36
-  * @var boolean
37
-  */
38
-  private bool $success = false;
35
+    /**
36
+     * @var boolean
37
+     */
38
+    private bool $success = false;
39 39
 
40 40
 
41
-  /**
42
-  * @return void
43
-  */
44
-  public function __construct(string $logPath)
45
-  {
41
+    /**
42
+     * @return void
43
+     */
44
+    public function __construct(string $logPath)
45
+    {
46 46
     $this->redis = RedisCacheManager::connect();
47 47
     $this->logger = new CacheLogger($logPath);
48
-  }
49
-
50
-  /**
51
-  * @param string $cacheKey
52
-  * @param string $namespace
53
-  * @param string|int $ttl
54
-  * @return mixed
55
-  */
56
-  public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600)
57
-  {
48
+    }
49
+
50
+    /**
51
+     * @param string $cacheKey
52
+     * @param string $namespace
53
+     * @param string|int $ttl
54
+     * @return mixed
55
+     */
56
+    public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600)
57
+    {
58 58
     $fullCacheKey = $this->buildKey($cacheKey, $namespace);
59 59
     $cacheData = $this->redis->get($fullCacheKey);
60 60
 
61 61
     if($cacheData) {
62
-      $this->setMessage("Cache retrieved successfully", true);
63
-      $this->logger->debug("{$this->getMessage()} from redis driver.");
64
-      return CacheRedisHelper::serialize($cacheData, false);
62
+        $this->setMessage("Cache retrieved successfully", true);
63
+        $this->logger->debug("{$this->getMessage()} from redis driver.");
64
+        return CacheRedisHelper::serialize($cacheData, false);
65 65
     }
66 66
 
67 67
     $this->setMessage("CacheData not found, does not exists or expired", false);
68 68
     $this->logger->info("{$this->getMessage()} from redis driver.");
69
-  }
70
-
71
-  /**
72
-  * Armazena um item no cache Redis, com suporte a namespace e TTL opcional.
73
-  *
74
-  * @param string $cacheKey
75
-  * @param mixed  $cacheData
76
-  * @param string $namespace
77
-  * @param string|int|null $ttl
78
-  * @return mixed
79
-  */
80
-  public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string|int|null $ttl = null)
81
-  {
82
-      $cacheFullKey = $this->buildKey($cacheKey, $namespace);
83
-      $serializedData = CacheRedisHelper::serialize($cacheData);
84
-
85
-      $result = $ttl ? $this->redis->setex($cacheFullKey, (int) $ttl, $serializedData) 
69
+    }
70
+
71
+    /**
72
+     * Armazena um item no cache Redis, com suporte a namespace e TTL opcional.
73
+     *
74
+     * @param string $cacheKey
75
+     * @param mixed  $cacheData
76
+     * @param string $namespace
77
+     * @param string|int|null $ttl
78
+     * @return mixed
79
+     */
80
+    public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string|int|null $ttl = null)
81
+    {
82
+        $cacheFullKey = $this->buildKey($cacheKey, $namespace);
83
+        $serializedData = CacheRedisHelper::serialize($cacheData);
84
+
85
+        $result = $ttl ? $this->redis->setex($cacheFullKey, (int) $ttl, $serializedData) 
86 86
                     : $this->redis->set($cacheFullKey, $serializedData);
87 87
 
88
-      if ($result) {
89
-          $this->setMessage("Cache stored successfully", true);
90
-      } else {
91
-          $this->setMessage("Failed to store cache", false);
92
-      }
88
+        if ($result) {
89
+            $this->setMessage("Cache stored successfully", true);
90
+        } else {
91
+            $this->setMessage("Failed to store cache", false);
92
+        }
93 93
 
94
-      $this->logger->debug("{$this->getMessage()} from Redis driver.");
95
-      return $result;
96
-  }
94
+        $this->logger->debug("{$this->getMessage()} from Redis driver.");
95
+        return $result;
96
+    }
97 97
 
98 98
 
99
-  /**
100
-  * @param string $cacheKey
101
-  * @param string $namespace
102
-  * @return void
103
-  */
104
-  public function clearCache(string $cacheKey, string $namespace = '')
105
-  {
99
+    /**
100
+     * @param string $cacheKey
101
+     * @param string $namespace
102
+     * @return void
103
+     */
104
+    public function clearCache(string $cacheKey, string $namespace = '')
105
+    {
106 106
     $cacheFullKey = $this->buildKey($cacheKey, $namespace);
107 107
 
108 108
 
@@ -114,107 +114,107 @@  discard block
 block discarded – undo
114 114
 
115 115
 
116 116
     $this->logger->debug("{$this->getMessage()} from redis driver.");
117
-  }
118
-
119
-  /**
120
-  * @param string $cacheKey
121
-  * @param string $namespace
122
-  * @return void
123
-  */
124
-  public function has(string $cacheKey, string $namespace = '')
125
-  {
117
+    }
118
+
119
+    /**
120
+     * @param string $cacheKey
121
+     * @param string $namespace
122
+     * @return void
123
+     */
124
+    public function has(string $cacheKey, string $namespace = '')
125
+    {
126 126
     $cacheFullKey = $this->buildKey($cacheKey, $namespace);
127 127
 
128 128
     if($this->redis->exists($cacheFullKey) > 0) {
129 129
         $this->setMessage("Cache Key: {$cacheKey} exists!", true);
130 130
     } else {
131 131
         $this->setMessage("Cache Key: {$cacheKey} does not exists!", false);
132
-      }
132
+        }
133 133
 
134 134
     $this->logger->debug("{$this->getMessage()} from redis driver.");
135
-  }
136
-
137
-  /**
138
-  * @param string $cacheKey
139
-  * @param string|int $ttl
140
-  * @param string $namespace
141
-  * @return void
142
-  */
143
-  public function renewCache(string $cacheKey, string|int $ttl, string $namespace = '')
144
-  {
145
-      $cacheFullKey = $this->buildKey($cacheKey, $namespace);
146
-      $dump = $this->getDump($cacheFullKey);
147
-
148
-      if (!$dump) {
149
-          $this->setMessage("Cache Key: {$cacheKey} not found.", false);
150
-          $this->logger->warning("{$this->getMessage()} from Redis driver.");
151
-          return;
152
-      }
153
-
154
-      $this->clearCache($cacheFullKey);
155
-
156
-      if ($this->restoreKey($cacheFullKey, $ttl, $dump)) {
157
-          $this->setMessage("Cache Key: {$cacheKey} renewed successfully.", true);
158
-          $this->logger->debug("{$this->getMessage()} from Redis driver.");
159
-      } else {
160
-          $this->setMessage("Failed to renew cache key: {$cacheKey}.", false);
161
-          $this->logger->error("{$this->getMessage()} from Redis driver.");
162
-      }
163
-  }
164
-
165
-
166
-  /**
167
-  * @param string $cacheKey
168
-  * @param mixed  $cacheData
169
-  * @param string $namespace
170
-  * @return void
171
-  */
172
-  public function appendCache(string $cacheKey, mixed $cacheData, string $namespace = '')
173
-  {
174
-      $cacheFullKey = $this->buildKey($cacheKey, $namespace);
175
-      $existingData = $this->getCache($cacheFullKey);
176
-
177
-      $mergedCacheData = CacheRedisHelper::arrayIdentifier($existingData, $cacheData);
178
-
179
-      $serializedData = CacheRedisHelper::serialize($mergedCacheData);
180
-
181
-      if ($this->redis->set($cacheFullKey, $serializedData)) {
182
-          $this->setMessage("Cache appended successfully", true);
183
-      } else {
184
-          $this->setMessage("Something went wrong. Please, try again.", false);
185
-      }
135
+    }
136
+
137
+    /**
138
+     * @param string $cacheKey
139
+     * @param string|int $ttl
140
+     * @param string $namespace
141
+     * @return void
142
+     */
143
+    public function renewCache(string $cacheKey, string|int $ttl, string $namespace = '')
144
+    {
145
+        $cacheFullKey = $this->buildKey($cacheKey, $namespace);
146
+        $dump = $this->getDump($cacheFullKey);
147
+
148
+        if (!$dump) {
149
+            $this->setMessage("Cache Key: {$cacheKey} not found.", false);
150
+            $this->logger->warning("{$this->getMessage()} from Redis driver.");
151
+            return;
152
+        }
153
+
154
+        $this->clearCache($cacheFullKey);
155
+
156
+        if ($this->restoreKey($cacheFullKey, $ttl, $dump)) {
157
+            $this->setMessage("Cache Key: {$cacheKey} renewed successfully.", true);
158
+            $this->logger->debug("{$this->getMessage()} from Redis driver.");
159
+        } else {
160
+            $this->setMessage("Failed to renew cache key: {$cacheKey}.", false);
161
+            $this->logger->error("{$this->getMessage()} from Redis driver.");
162
+        }
163
+    }
164
+
165
+
166
+    /**
167
+     * @param string $cacheKey
168
+     * @param mixed  $cacheData
169
+     * @param string $namespace
170
+     * @return void
171
+     */
172
+    public function appendCache(string $cacheKey, mixed $cacheData, string $namespace = '')
173
+    {
174
+        $cacheFullKey = $this->buildKey($cacheKey, $namespace);
175
+        $existingData = $this->getCache($cacheFullKey);
176
+
177
+        $mergedCacheData = CacheRedisHelper::arrayIdentifier($existingData, $cacheData);
178
+
179
+        $serializedData = CacheRedisHelper::serialize($mergedCacheData);
180
+
181
+        if ($this->redis->set($cacheFullKey, $serializedData)) {
182
+            $this->setMessage("Cache appended successfully", true);
183
+        } else {
184
+            $this->setMessage("Something went wrong. Please, try again.", false);
185
+        }
186 186
 
187 187
   
188
-      $this->logger->debug("{$this->getMessage()} from redis driver.");
189
-  }
188
+        $this->logger->debug("{$this->getMessage()} from redis driver.");
189
+    }
190 190
 
191 191
 
192
-  /**
193
-  * @param array  $items
194
-  * @param string $namespace
195
-  * @param int    $batchSize
196
-  * @return void
197
-  */
198
-  public function putMany(array $items, string $namespace = '', int $batchSize = 100)
199
-  {
200
-      $processedCount = 0;
201
-      $itemCount = count($items);
192
+    /**
193
+     * @param array  $items
194
+     * @param string $namespace
195
+     * @param int    $batchSize
196
+     * @return void
197
+     */
198
+    public function putMany(array $items, string $namespace = '', int $batchSize = 100)
199
+    {
200
+        $processedCount = 0;
201
+        $itemCount = count($items);
202 202
 
203
-      while($processedCount < $itemCount)
204
-      {
203
+        while($processedCount < $itemCount)
204
+        {
205 205
 
206 206
         $batchItems = array_slice($items, $processedCount, $batchSize);
207 207
         $this->processBatchItems($batchItems, $namespace);
208 208
         $processedCount += count($batchItems);
209
-      }
209
+        }
210 210
 
211
-  }
211
+    }
212 212
 
213
-  /**
214
-  * @return void
215
-  */
216
-  public function flushCache()
217
-  {
213
+    /**
214
+     * @return void
215
+     */
216
+    public function flushCache()
217
+    {
218 218
   
219 219
     if($this->redis->flushall()) {
220 220
         $this->setMessage("Cache flushed successfully", true);
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     }
224 224
 
225 225
     $this->logger->debug("{$this->getMessage()} from redis driver.");
226
-  }
226
+    }
227 227
 
228 228
     /**
229 229
      * @return string
@@ -241,17 +241,17 @@  discard block
 block discarded – undo
241 241
         return $this->success;
242 242
     }
243 243
 
244
-  /**
245
-  * @param string $key
246
-  * @param string $namespace
247
-  * @return string
248
-  */
249
-  private function buildKey(string $key, string $namespace)
250
-  {
244
+    /**
245
+     * @param string $key
246
+     * @param string $namespace
247
+     * @return string
248
+     */
249
+    private function buildKey(string $key, string $namespace)
250
+    {
251 251
     return $this->namespace . ($namespace ? $namespace . ':' : '') . $key;
252
-  }
252
+    }
253 253
 
254
-  /**
254
+    /**
255 255
      * @param string  $message
256 256
      * @param boolean $success
257 257
      * @return void
@@ -263,10 +263,10 @@  discard block
 block discarded – undo
263 263
     }
264 264
 
265 265
         /**
266
-     * @param array  $batchItems
267
-     * @param string $namespace
268
-     * @return void
269
-     */
266
+         * @param array  $batchItems
267
+         * @param string $namespace
268
+         * @return void
269
+         */
270 270
     private function processBatchItems(array $batchItems, string $namespace)
271 271
     {
272 272
         foreach($batchItems as $item) {
@@ -278,29 +278,29 @@  discard block
 block discarded – undo
278 278
         }
279 279
     }
280 280
 
281
-      /**
282
-  * @param string $fullKey
283
-  * @return string|null
284
-  */
285
-  private function getDump(string $fullKey)
286
-  {
287
-      return $this->redis->dump($fullKey);
288
-  }
289
-
290
-
291
-  /**
292
-  * @param string $fullKey
293
-  * @param string|int $ttl
294
-  * @param mixed $dump
295
-  * @return bool
296
-  */
297
-  private function restoreKey(string $fullKey, string|int $ttl, mixed $dump)
298
-  {
299
-      try {
300
-          $this->redis->restore($fullKey, $ttl * 1000, $dump, 'REPLACE');
301
-          return true;
302
-      } catch (Exception $e) {
303
-          throw CacheRedisException::create($e->getMessage());
304
-      }
305
-  }
281
+        /**
282
+         * @param string $fullKey
283
+         * @return string|null
284
+         */
285
+    private function getDump(string $fullKey)
286
+    {
287
+        return $this->redis->dump($fullKey);
288
+    }
289
+
290
+
291
+    /**
292
+     * @param string $fullKey
293
+     * @param string|int $ttl
294
+     * @param mixed $dump
295
+     * @return bool
296
+     */
297
+    private function restoreKey(string $fullKey, string|int $ttl, mixed $dump)
298
+    {
299
+        try {
300
+            $this->redis->restore($fullKey, $ttl * 1000, $dump, 'REPLACE');
301
+            return true;
302
+        } catch (Exception $e) {
303
+            throw CacheRedisException::create($e->getMessage());
304
+        }
305
+    }
306 306
 }
Please login to merge, or discard this patch.
src/Helpers/CacheRedisHelper.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -12,20 +12,20 @@  discard block
 block discarded – undo
12 12
 class CacheRedisHelper
13 13
 {
14 14
 
15
-  /**
16
-  * @param mixed $data
17
-  * @param bool  $serialize
18
-  * @return mixed
19
-  */
20
-  public static function serialize(mixed $data, bool $serialize = true)
21
-  {
15
+    /**
16
+     * @param mixed $data
17
+     * @param bool  $serialize
18
+     * @return mixed
19
+     */
20
+    public static function serialize(mixed $data, bool $serialize = true)
21
+    {
22 22
     if($serialize) {
23
-      return serialize($data);
23
+        return serialize($data);
24 24
     }
25 25
 
26 26
     return unserialize($data);
27 27
 
28
-  }
28
+    }
29 29
 
30 30
     /**
31 31
      * @param array $item
@@ -54,63 +54,63 @@  discard block
 block discarded – undo
54 54
         return (array)$cacheData;
55 55
     }
56 56
 
57
-  /**
58
-    * @param mixed $currentCacheData
59
-    * @param mixed $cacheData
60
-    * @return array
61
-    */
62
-  public static function arrayIdentifier(mixed $currentCacheData, mixed $cacheData)
63
-  {
64
-      /**
65
-      * Se ambos forem arrays, mescle-os de forma recursiva para preservar subarrays
66
-      */
67
-      if (is_array($currentCacheData) && is_array($cacheData)) {
68
-          return self::mergeRecursive($currentCacheData, $cacheData);
69
-      }
70
-
71
-      /** 
72
-      * Se $currentCacheData não for um array, inicialize-o como um array vazio
73
-      */
74
-      if (!is_array($currentCacheData)) {
75
-          $currentCacheData = [];
76
-      }
77
-
78
-      /**
79
-      * Se $cacheData não for um array, converta-o em um array
80
-      */
81
-      if (!is_array($cacheData)) {
82
-          $cacheData = [$cacheData];
83
-      }
84
-
85
-      return array_merge($currentCacheData, $cacheData);
86
-  }
87
-
88
-  /**
89
-    * Mescla arrays de forma recursiva.
90
-    * @param array $array1
91
-    * @param array $array2
92
-    * @return array
93
-    */
94
-  private static function mergeRecursive(array $array1, array $array2)
95
-  {
96
-      foreach ($array2 as $key => $value) {
97
-
98
-          /**
99
-          * Se a chave existe em ambos os arrays e ambos os valores são arrays, mescle recursivamente
100
-          */
101
-          if (isset($array1[$key]) && is_array($array1[$key]) && is_array($value)) {
102
-              $array1[$key] = self::mergeRecursive($array1[$key], $value);
103
-          } else {
104
-
105
-              /**
106
-              * Caso contrário, sobrescreva o valor em $array1 com o valor de $array2
107
-              */
108
-              $array1[$key] = $value;
109
-          }
110
-      }
111
-
112
-      return $array1;
113
-  }
57
+    /**
58
+     * @param mixed $currentCacheData
59
+     * @param mixed $cacheData
60
+     * @return array
61
+     */
62
+    public static function arrayIdentifier(mixed $currentCacheData, mixed $cacheData)
63
+    {
64
+        /**
65
+         * Se ambos forem arrays, mescle-os de forma recursiva para preservar subarrays
66
+         */
67
+        if (is_array($currentCacheData) && is_array($cacheData)) {
68
+            return self::mergeRecursive($currentCacheData, $cacheData);
69
+        }
70
+
71
+        /** 
72
+         * Se $currentCacheData não for um array, inicialize-o como um array vazio
73
+         */
74
+        if (!is_array($currentCacheData)) {
75
+            $currentCacheData = [];
76
+        }
77
+
78
+        /**
79
+         * Se $cacheData não for um array, converta-o em um array
80
+         */
81
+        if (!is_array($cacheData)) {
82
+            $cacheData = [$cacheData];
83
+        }
84
+
85
+        return array_merge($currentCacheData, $cacheData);
86
+    }
87
+
88
+    /**
89
+     * Mescla arrays de forma recursiva.
90
+     * @param array $array1
91
+     * @param array $array2
92
+     * @return array
93
+     */
94
+    private static function mergeRecursive(array $array1, array $array2)
95
+    {
96
+        foreach ($array2 as $key => $value) {
97
+
98
+            /**
99
+             * Se a chave existe em ambos os arrays e ambos os valores são arrays, mescle recursivamente
100
+             */
101
+            if (isset($array1[$key]) && is_array($array1[$key]) && is_array($value)) {
102
+                $array1[$key] = self::mergeRecursive($array1[$key], $value);
103
+            } else {
104
+
105
+                /**
106
+                 * Caso contrário, sobrescreva o valor em $array1 com o valor de $array2
107
+                 */
108
+                $array1[$key] = $value;
109
+            }
110
+        }
111
+
112
+        return $array1;
113
+    }
114 114
 
115 115
 }
116 116
 
Please login to merge, or discard this patch.
src/Exceptions/CacheRedisException.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -8,34 +8,34 @@
 block discarded – undo
8 8
 {
9 9
 
10 10
 
11
-  /** @param string $before */
12
-  private static string $before = "<Redis Cache Store Exception>";
11
+    /** @param string $before */
12
+    private static string $before = "<Redis Cache Store Exception>";
13 13
 
14 14
 
15
-  /**
16
-  * @return void
17
-  */
18
-  public static function create(string $message = "", int $code = 0, ?Exception $previous = null, array $details = [])
19
-  {
15
+    /**
16
+     * @return void
17
+     */
18
+    public static function create(string $message = "", int $code = 0, ?Exception $previous = null, array $details = [])
19
+    {
20 20
     return new self(self::getBefore() . ": " .$message, $code, $previous, $details);
21
-  }
21
+    }
22 22
 
23 23
 
24
-  /**
25
-  * @return string
26
-  */
27
-  public static function getBefore()
28
-  {
24
+    /**
25
+     * @return string
26
+     */
27
+    public static function getBefore()
28
+    {
29 29
     return self::$before;
30
-  }
30
+    }
31 31
 
32
-  /**
33
-  * @return void
34
-  */
35
-  public static function setBefore(string $text)
36
-  {
32
+    /**
33
+     * @return void
34
+     */
35
+    public static function setBefore(string $text)
36
+    {
37 37
     self::$before = $text;
38
-  }
38
+    }
39 39
 
40 40
 }
41 41
 
Please login to merge, or discard this patch.
src/Helpers/EnvHelper.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-    * @return void
38
-    */
37
+     * @return void
38
+     */
39 39
     public static function copyEnv()
40 40
     {
41 41
         $rootDir = self::getRootPath();
Please login to merge, or discard this patch.
src/CacheStore/CacheManager/FileCacheManager.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-    * @param string $dir
14
-    * @return void
15
-    */
13
+     * @param string $dir
14
+     * @return void
15
+     */
16 16
     public function createDirectory(string $dir)
17 17
     {
18 18
         if ((!file_exists($dir) || !is_dir($dir)) && !mkdir($dir, 0777, true)) {
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-    * @param string $filename
25
-    * @param string $data
26
-    * @return void
27
-    */
24
+     * @param string $filename
25
+     * @param string $data
26
+     * @return void
27
+     */
28 28
     public function writeFile(string $filename, string $data)
29 29
     {
30 30
         if (!@file_put_contents($filename, $data, LOCK_EX)) {
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-    * @param string $filename
37
-    * @return string
38
-    */
36
+     * @param string $filename
37
+     * @return string
38
+     */
39 39
     public function readFile(string $filename)
40 40
     {
41 41
         if (!$this->fileExists($filename)) {
@@ -45,18 +45,18 @@  discard block
 block discarded – undo
45 45
     }
46 46
 
47 47
     /**
48
-    * @param string $filename
49
-    * @return bool
50
-    */
48
+     * @param string $filename
49
+     * @return bool
50
+     */
51 51
     public function fileExists(string $filename)
52 52
     {
53 53
         return file_exists($filename);
54 54
     }
55 55
 
56 56
     /**
57
-    * @param string $filename
58
-    * @return void
59
-    */
57
+     * @param string $filename
58
+     * @return void
59
+     */
60 60
     public function removeFile(string $filename)
61 61
     {
62 62
         if (file_exists($filename)) {
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-    * @param string $dir
69
-    * @return void
70
-    */
68
+     * @param string $dir
69
+     * @return void
70
+     */
71 71
     public function clearDirectory(string $dir)
72 72
     {
73 73
         $iterator = new RecursiveIteratorIterator(
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
     }
82 82
 
83 83
     /**
84
-    * @param mixed $data
85
-    * @param bool $serealize
86
-    */
84
+     * @param mixed $data
85
+     * @param bool $serealize
86
+     */
87 87
     public function serialize(mixed $data, bool $serealize = true)
88 88
     {
89 89
         if($serealize) {
Please login to merge, or discard this patch.
tests/Feature/OptionBuildTest.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@  discard block
 block discarded – undo
7 7
 class OptionBuildTest extends TestCase
8 8
 {
9 9
 
10
-  private $cache;
11
-  private $cacheDir;
10
+    private $cache;
11
+    private $cacheDir;
12 12
 
13
-  protected function setUp(): void
14
-  {
13
+    protected function setUp(): void
14
+    {
15 15
     $this->cacheDir = __DIR__ . '/cache';
16 16
     if (!file_exists($this->cacheDir) || !is_dir($this->cacheDir)) {
17
-      mkdir($this->cacheDir, 0755, true);
17
+        mkdir($this->cacheDir, 0755, true);
18 18
     }
19 19
 
20 20
     $this->cache = new Cacheer();
21
-  }
21
+    }
22 22
 
23
-  protected function tearDown(): void
24
-  {
23
+    protected function tearDown(): void
24
+    {
25 25
     $this->cache->flushCache();
26
-  }
26
+    }
27 27
 
28
-  public function test_it_can_set_cache_diretory()
29
-  {
28
+    public function test_it_can_set_cache_diretory()
29
+    {
30 30
     $cacheDir = __DIR__ . "/cache";
31 31
 
32 32
     $options = OptionBuilder::forFile()
@@ -35,23 +35,23 @@  discard block
 block discarded – undo
35 35
 
36 36
     $this->assertArrayHasKey('cacheDir', $options);
37 37
     $this->assertEquals($cacheDir, $options['cacheDir']);
38
-  }
38
+    }
39 39
 
40 40
 
41
-  public function test_it_can_set_expiration_time()
41
+    public function test_it_can_set_expiration_time()
42 42
     {
43 43
 
44
-      $options = OptionBuilder::forFile()
45
-      ->expirationTime('2 hours')
46
-      ->build();
44
+        $options = OptionBuilder::forFile()
45
+        ->expirationTime('2 hours')
46
+        ->build();
47 47
       
48
-      $this->assertArrayHasKey('expirationTime', $options);
49
-      $this->assertEquals('2 hours', $options['expirationTime']);
48
+        $this->assertArrayHasKey('expirationTime', $options);
49
+        $this->assertEquals('2 hours', $options['expirationTime']);
50 50
     }
51 51
 
52 52
     public function test_it_can_set_flush_after()
53 53
     {
54
-      $options = OptionBuilder::forFile()
54
+        $options = OptionBuilder::forFile()
55 55
         ->flushAfter('11 seconds')
56 56
         ->build();
57 57
 
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function test_it_can_set_multiple_options_together()
63 63
     {
64
-      $cacheDir = __DIR__ . "/cache";
64
+        $cacheDir = __DIR__ . "/cache";
65 65
 
66
-      $options = OptionBuilder::forFile()
66
+        $options = OptionBuilder::forFile()
67 67
             ->dir($cacheDir)
68 68
             ->expirationTime('1 day')
69 69
             ->flushAfter('30 minutes')
@@ -76,41 +76,41 @@  discard block
 block discarded – undo
76 76
         ], $options);
77 77
     }
78 78
 
79
-  public function test_it_allows_setting_expiration_time_with_timebuilder()
79
+    public function test_it_allows_setting_expiration_time_with_timebuilder()
80 80
     {
81
-      $options = OptionBuilder::forFile()->expirationTime()->week(1)->build();
82
-      $this->assertArrayHasKey('expirationTime', $options);
83
-      $this->assertEquals('1 weeks', $options['expirationTime']);
81
+        $options = OptionBuilder::forFile()->expirationTime()->week(1)->build();
82
+        $this->assertArrayHasKey('expirationTime', $options);
83
+        $this->assertEquals('1 weeks', $options['expirationTime']);
84 84
     }
85 85
 
86
-  public function test_it_allows_setting_flush_after_with_timebuilder()
87
-  {
86
+    public function test_it_allows_setting_flush_after_with_timebuilder()
87
+    {
88 88
     $options = OptionBuilder::forFile()->flushAfter()->second(10)->build();
89 89
     $this->assertArrayHasKey('flushAfter', $options);
90 90
     $this->assertEquals('10 seconds', $options['flushAfter']);
91
-  }
91
+    }
92 92
 
93
-  public function test_it_can_set_multiple_options_together_with_timebuilder()
94
-  {
93
+    public function test_it_can_set_multiple_options_together_with_timebuilder()
94
+    {
95 95
     $cacheDir = __DIR__ . "/cache";
96 96
     $options = OptionBuilder::forFile()
97
-          ->dir($cacheDir)
98
-          ->expirationTime()->week(1)
99
-          ->flushAfter()->minute(10)
100
-          ->build();
97
+            ->dir($cacheDir)
98
+            ->expirationTime()->week(1)
99
+            ->flushAfter()->minute(10)
100
+            ->build();
101 101
 
102 102
     $this->assertEquals([
103 103
             'cacheDir' => $cacheDir,
104 104
             'expirationTime' => '1 weeks',
105 105
             'flushAfter' => '10 minutes',
106 106
         ], $options);
107
-  }
107
+    }
108 108
 
109
-  public function test_it_returns_empty_array_when_no_options_are_set()
110
-  {
109
+    public function test_it_returns_empty_array_when_no_options_are_set()
110
+    {
111 111
     $options = OptionBuilder::forFile()->build();
112 112
     $this->assertIsArray($options);
113 113
     $this->assertEmpty($options);
114
-  }
114
+    }
115 115
 
116 116
 }
Please login to merge, or discard this patch.
src/Config/Option/Builder/OptionBuilder.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
  */
12 12
 class OptionBuilder
13 13
 {
14
-  /**
15
-  * @return FileOptionBuilder
16
-  */
17
-  public static function forFile() {
14
+    /**
15
+     * @return FileOptionBuilder
16
+     */
17
+    public static function forFile() {
18 18
     return new FileOptionBuilder();
19
-  }
19
+    }
20 20
 }
Please login to merge, or discard this patch.