We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97cbf60 commit e0877e6Copy full SHA for e0877e6
1 file changed
src/ECBConverter.php
@@ -43,7 +43,7 @@ public function checkFileCache(): void
43
if (!file_exists($this->cache_file) || time() - filemtime($this->cache_file) > $this->cache_timeout) {
44
$this->reloadExchangeReferences();
45
file_put_contents($this->cache_file, serialize($this->exchange_data), LOCK_EX);
46
- } else if (is_null($this->exchange_data)) {
+ } elseif (is_null($this->exchange_data)) {
47
$this->exchange_data = unserialize(file_get_contents($this->cache_file));
48
}
49
0 commit comments