@@ -102,10 +102,8 @@ protected function get_sqlite_pdo() {
102102
103103 /**
104104 * Create SQLite database.
105- *
106- * @param array $assoc_args Associative arguments (unused for SQLite).
107105 */
108- protected function sqlite_create ( $ assoc_args ) {
106+ protected function sqlite_create () {
109107 $ db_path = $ this ->get_sqlite_db_path ();
110108 $ db_dir = dirname ( $ db_path );
111109
@@ -137,10 +135,8 @@ protected function sqlite_create( $assoc_args ) {
137135
138136 /**
139137 * Drop SQLite database.
140- *
141- * @param array $assoc_args Associative arguments (unused for SQLite).
142138 */
143- protected function sqlite_drop ( $ assoc_args ) {
139+ protected function sqlite_drop () {
144140 $ db_path = $ this ->get_sqlite_db_path ();
145141
146142 if ( ! file_exists ( $ db_path ) ) {
@@ -156,10 +152,8 @@ protected function sqlite_drop( $assoc_args ) {
156152
157153 /**
158154 * Reset SQLite database.
159- *
160- * @param array $assoc_args Associative arguments (unused for SQLite).
161155 */
162- protected function sqlite_reset ( $ assoc_args ) {
156+ protected function sqlite_reset () {
163157 $ db_path = $ this ->get_sqlite_db_path ();
164158
165159 // Delete if exists.
@@ -194,10 +188,9 @@ protected function sqlite_reset( $assoc_args ) {
194188 /**
195189 * Execute a query against the SQLite database.
196190 *
197- * @param string $query SQL query to execute.
198- * @param array $assoc_args Associative arguments.
191+ * @param string $query SQL query to execute.
199192 */
200- protected function sqlite_query ( $ query, $ assoc_args ) {
193+ protected function sqlite_query ( $ query ) {
201194 $ pdo = $ this ->get_sqlite_pdo ();
202195
203196 if ( ! $ pdo ) {
@@ -357,10 +350,9 @@ protected function sqlite_export( $file, $assoc_args ) {
357350 /**
358351 * Import SQL into SQLite database.
359352 *
360- * @param string $file Input file path.
361- * @param array $assoc_args Associative arguments.
353+ * @param string $file Input file path.
362354 */
363- protected function sqlite_import ( $ file, $ assoc_args ) {
355+ protected function sqlite_import ( $ file ) {
364356 $ pdo = $ this ->get_sqlite_pdo ();
365357
366358 if ( ! $ pdo ) {
0 commit comments