🐞 fix: phpcs issue cleanup

This commit is contained in:
Keith Solomon
2026-02-10 07:19:26 -06:00
parent d821a7e684
commit d8d6b34e90
7 changed files with 152 additions and 154 deletions

View File

@@ -1,18 +1,19 @@
<?php
/**
* Spacetraders SQLite storage for configuration and API cache.
* Spacetraders API Client Library - Storage
*
* @category Storage
* @package SpacetradersAPI
* @author Keith Solomon <keith@keithsolomon.net>
* @license MIT License
* @link https://git.keithsolomon.net/keith/Spacetraders
* SQLite storage for configuration and API cache.
*
* @category Storage
* @package SpacetradersAPI
* @author Keith Solomon <keith@keithsolomon.net>
* @license MIT License
* @version GIT: <git_id>
* @link https://git.keithsolomon.net/keith/Spacetraders
*/
/**
* Spacetraders SQLite storage for configuration and API cache.
*
* @package SpacetradersAPI
* Storage for configuration and API cache.
*/
class SpacetradersStorage {
/**
@@ -45,7 +46,7 @@ class SpacetradersStorage {
*
* @return void
*/
private function _initializeSchema(): void {
private function _initializeSchema(): void { // phpcs:ignore
$this->db->exec(
'CREATE TABLE IF NOT EXISTS settings (
setting_key TEXT PRIMARY KEY,