Refactor
This commit is contained in:
parent
6c637cd24c
commit
6c33bd7322
1 changed files with 2 additions and 2 deletions
4
src/classes/cache/query.php
vendored
4
src/classes/cache/query.php
vendored
|
@ -11,7 +11,7 @@ class Query extends Cache
|
|||
/**
|
||||
* Private
|
||||
*/
|
||||
private Database $databse;
|
||||
private \wishthis\Database $database;
|
||||
|
||||
/**
|
||||
* Public
|
||||
|
@ -23,7 +23,7 @@ class Query extends Cache
|
|||
parent::__construct($url);
|
||||
|
||||
$this->directory .= '/query';
|
||||
$this->database = $database;
|
||||
$this->database = $database;
|
||||
}
|
||||
|
||||
public function get(): array
|
||||
|
|
Loading…
Reference in a new issue