Skip to content

Commit e0877e6

Browse files
committed
Fix control keyword consistency
1 parent 97cbf60 commit e0877e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ECBConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function checkFileCache(): void
4343
if (!file_exists($this->cache_file) || time() - filemtime($this->cache_file) > $this->cache_timeout) {
4444
$this->reloadExchangeReferences();
4545
file_put_contents($this->cache_file, serialize($this->exchange_data), LOCK_EX);
46-
} else if (is_null($this->exchange_data)) {
46+
} elseif (is_null($this->exchange_data)) {
4747
$this->exchange_data = unserialize(file_get_contents($this->cache_file));
4848
}
4949
}

0 commit comments

Comments
 (0)