Passed
Pull Request — main (#36)
by Sílvio
02:50
created
src/Helpers/SqliteHelper.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-    * @param string $databaseDir
40
-    * @return void
41
-    */
39
+     * @param string $databaseDir
40
+     * @return void
41
+     */
42 42
     private static function createDatabaseDir(string $databaseDir)
43 43
     {
44 44
         if (!is_dir($databaseDir)) {
@@ -47,9 +47,9 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-    * @param string $dbFile
51
-    * @return void
52
-    */
50
+     * @param string $dbFile
51
+     * @return void
52
+     */
53 53
     private static function createDatabaseFile(string $dbFile)
54 54
     {
55 55
         if (!file_exists($dbFile)) {
@@ -58,9 +58,9 @@  discard block
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-    * @param string $database
62
-    * @return string
63
-    */
61
+     * @param string $database
62
+     * @return string
63
+     */
64 64
     private static function checkExtension(string $database)
65 65
     {
66 66
         if (strpos($database, '.sqlite') === false) {
Please login to merge, or discard this patch.
src/Utils/CacheDataFormatter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
-    * @return string|false
22
-    */
21
+     * @return string|false
22
+     */
23 23
     public function toJson()
24 24
     {
25 25
         return json_encode(
@@ -31,24 +31,24 @@  discard block
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-    * @return array
35
-    */
34
+     * @return array
35
+     */
36 36
     public function toArray()
37 37
     {
38 38
         return (array)$this->data;
39 39
     }
40 40
 
41 41
     /**
42
-    * @return string
43
-    */
42
+     * @return string
43
+     */
44 44
     public function toString()
45 45
     {
46 46
         return (string)$this->data;
47 47
     }
48 48
 
49 49
     /**
50
-    * @return object
51
-    */
50
+     * @return object
51
+     */
52 52
     public function toObject()
53 53
     {
54 54
         return (object)$this->data;
Please login to merge, or discard this patch.
src/Utils/CacheLogger.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -23,49 +23,49 @@  discard block
 block discarded – undo
23 23
     }
24 24
 
25 25
     /**
26
-    * @return void
27
-    */
26
+     * @return void
27
+     */
28 28
     public function info($message)
29 29
     {
30 30
         $this->log('INFO', $message);
31 31
     }
32 32
 
33 33
     /**
34
-    * @return void
35
-    */
34
+     * @return void
35
+     */
36 36
     public function warning($message)
37 37
     {
38 38
         $this->log('WARNING', $message);
39 39
     }
40 40
 
41 41
     /**
42
-    * @return void
43
-    */
42
+     * @return void
43
+     */
44 44
     public function error($message)
45 45
     {
46 46
         $this->log('ERROR', $message);
47 47
     }
48 48
 
49 49
     /**
50
-    * @return void
51
-    */
50
+     * @return void
51
+     */
52 52
     public function debug($message)
53 53
     {
54 54
         $this->log('DEBUG', $message);
55 55
     }
56 56
 
57 57
     /**
58
-    * @param mixed $level
59
-    * @return string|int|false
60
-    */
58
+     * @param mixed $level
59
+     * @return string|int|false
60
+     */
61 61
     private function shouldLog(mixed $level)
62 62
     {
63 63
         return array_search($level, $this->logLevels) >= array_search($this->logLevel, $this->logLevels);
64 64
     }
65 65
 
66 66
     /**
67
-    * @return void
68
-    */
67
+     * @return void
68
+     */
69 69
     private function rotateLog()
70 70
     {
71 71
         if (file_exists($this->logFile) && filesize($this->logFile) >= $this->maxFileSize) {
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-    * @param mixed $level
79
-    * @param string $message
80
-    * @return void
81
-    */
78
+     * @param mixed $level
79
+     * @param string $message
80
+     * @return void
81
+     */
82 82
     private function log($level, $message)
83 83
     {
84 84
         if (!$this->shouldLog($level)) {
Please login to merge, or discard this patch.
src/CacheStore/FileCacheStore.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,13 +46,13 @@
 block discarded – undo
46 46
     private string $lastFlushTimeFile;
47 47
 
48 48
     /**
49
-    * @var CacheLogger
50
-    */
49
+     * @var CacheLogger
50
+     */
51 51
     private $logger = null;
52 52
 
53 53
     /**
54
-    * @var FileCacheManager
55
-    */
54
+     * @var FileCacheManager
55
+     */
56 56
     private FileCacheManager $fileManager;
57 57
 
58 58
     public function __construct(array $options = [])
Please login to merge, or discard this patch.
src/Repositories/CacheDatabaseRepository.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-    * @param string $cacheKey
52
-    * @param string $namespace
53
-    * @return mixed
54
-    */
51
+     * @param string $cacheKey
52
+     * @param string $namespace
53
+     * @return mixed
54
+     */
55 55
     public function retrieve(string $cacheKey, string $namespace = '')
56 56
     {
57 57
         $driver = $this->connection->getAttribute(PDO::ATTR_DRIVER_NAME);
@@ -105,11 +105,11 @@  discard block
 block discarded – undo
105 105
     }
106 106
 
107 107
     /**
108
-    * @param string $cacheKey
109
-    * @param string|int $ttl
110
-    * @param string $namespace
111
-    * @return bool
112
-    */
108
+     * @param string $cacheKey
109
+     * @param string|int $ttl
110
+     * @param string $namespace
111
+     * @return bool
112
+     */
113 113
     public function renew(string $cacheKey, string|int $ttl, string $namespace = '')
114 114
     {
115 115
         $currentTime = date('Y-m-d H:i:s');
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
     }
164 164
 
165 165
     /**
166
-    * @param string $driver
167
-    * @return string
168
-    */
166
+     * @param string $driver
167
+     * @return string
168
+     */
169 169
     private function getCurrentDateTime(string $driver)
170 170
     {
171 171
         return ($driver === 'sqlite') ? "DATETIME('now', 'localtime')" : "NOW()";
Please login to merge, or discard this patch.
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/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/OptionBuilders/FileOptionBuilder.php 1 patch
Indentation   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -11,103 +11,103 @@
 block discarded – undo
11 11
  */
12 12
 class FileOptionBuilder
13 13
 {
14
-  /** @param null|string $cacheDir */
15
-  private ?string $cacheDir = null;
14
+    /** @param null|string $cacheDir */
15
+    private ?string $cacheDir = null;
16 16
 
17
-  /** @param null|string $expirationTime */
18
-  private ?string $expirationTime = null;
17
+    /** @param null|string $expirationTime */
18
+    private ?string $expirationTime = null;
19 19
 
20
-  /** @param null|string $flushAfter */
21
-  private ?string $flushAfter = null;
20
+    /** @param null|string $flushAfter */
21
+    private ?string $flushAfter = null;
22 22
 
23
-  /** @param array $options */
24
-  private array $options = [];
23
+    /** @param array $options */
24
+    private array $options = [];
25 25
 
26
-  /**
27
-  * @param string $cacheDir
28
-  * @return $this
29
-  */
30
-  public function dir(string $cacheDir)
31
-  {
26
+    /**
27
+     * @param string $cacheDir
28
+     * @return $this
29
+     */
30
+    public function dir(string $cacheDir)
31
+    {
32 32
     $this->cacheDir = $cacheDir;
33 33
     return $this;
34
-  }
34
+    }
35 35
 
36
-  /**
37
-  * @param ?string $expirationTime
38
-  * @return $this|TimeBuilder
39
-  */
40
-  public function expirationTime(?string $expirationTime = null)
41
-  {
36
+    /**
37
+     * @param ?string $expirationTime
38
+     * @return $this|TimeBuilder
39
+     */
40
+    public function expirationTime(?string $expirationTime = null)
41
+    {
42 42
 
43 43
     if (!is_null($expirationTime)) {
44
-      $this->expirationTime = $expirationTime;
45
-      return $this;
44
+        $this->expirationTime = $expirationTime;
45
+        return $this;
46 46
     }
47 47
 
48 48
     return new TimeBuilder(function ($formattedTime){
49
-      $this->expirationTime = $formattedTime;
49
+        $this->expirationTime = $formattedTime;
50 50
     }, $this);
51
-  }
51
+    }
52 52
 
53
-  /**
54
-  * @param ?string $flushAfter
55
-  * @return $this|TimeBuilder
56
-  */
57
-  public function flushAfter(?string $flushAfter = null)
58
-  {
53
+    /**
54
+     * @param ?string $flushAfter
55
+     * @return $this|TimeBuilder
56
+     */
57
+    public function flushAfter(?string $flushAfter = null)
58
+    {
59 59
 
60 60
     if (!is_null($flushAfter)) {
61
-      $this->flushAfter = mb_strtolower($flushAfter, 'UTF-8');
62
-      return $this;
61
+        $this->flushAfter = mb_strtolower($flushAfter, 'UTF-8');
62
+        return $this;
63 63
     }
64 64
 
65 65
     return new TimeBuilder(function ($formattedTime){
66
-      $this->flushAfter = $formattedTime;
66
+        $this->flushAfter = $formattedTime;
67 67
     }, $this);
68
-  }
68
+    }
69 69
 
70
-  /**
71
-  * @return array
72
-  */
73
-  public function build()
74
-  {
70
+    /**
71
+     * @return array
72
+     */
73
+    public function build()
74
+    {
75 75
     return $this->validated();
76
-  }
76
+    }
77 77
 
78
-  /**
79
-  * @return array
80
-  */
81
-  private function validated()
82
-  {
78
+    /**
79
+     * @return array
80
+     */
81
+    private function validated()
82
+    {
83 83
     foreach ($this->properties() as $key => $value) {
84 84
         if ($this->isValidAndNotNull($value)) {
85 85
             $this->options[$key] = $value;
86 86
         }
87 87
     }
88 88
     return $this->options;
89
-  }
90
-
91
-  /**
92
-  * @param mixed $data
93
-  * @return bool
94
-  */
95
-  private function isValidAndNotNull(mixed $data)
96
-  {
89
+    }
90
+
91
+    /**
92
+     * @param mixed $data
93
+     * @return bool
94
+     */
95
+    private function isValidAndNotNull(mixed $data)
96
+    {
97 97
     return !empty($data) ? true : false;
98
-  }
98
+    }
99 99
 
100
-  /**
101
-  * @return array
102
-  */
103
-  private function properties()
104
-  {
100
+    /**
101
+     * @return array
102
+     */
103
+    private function properties()
104
+    {
105 105
     $properties = [
106
-      'cacheDir' => $this->cacheDir,
107
-      'expirationTime' => $this->expirationTime,
108
-      'flushAfter' => $this->flushAfter
106
+        'cacheDir' => $this->cacheDir,
107
+        'expirationTime' => $this->expirationTime,
108
+        'flushAfter' => $this->flushAfter
109 109
     ];
110 110
 
111 111
     return $properties;
112
-  }
112
+    }
113 113
 }
Please login to merge, or discard this patch.