mirror of
https://github.com/Karaka-Management/oms-Exchange.git
synced 2026-01-31 02:08:40 +00:00
phpstan fixes
This commit is contained in:
parent
c751d11788
commit
49baf7f65f
|
|
@ -85,12 +85,13 @@ final class Importer extends ImporterAbstract
|
|||
$end = new \DateTime($request->getData('end') ?? 'now');
|
||||
|
||||
$this->remote = ConnectionFactory::create([
|
||||
'db' => $request->getData('db') ?? '',
|
||||
'host' => $request->getData('host') ?? '',
|
||||
'db' => (string) ($request->getData('db') ?? ''),
|
||||
'host' => (string) ($request->getData('host') ?? ''),
|
||||
'port' => (int) ($request->getData('port') ?? 0),
|
||||
'database' => $request->getData('database') ?? '',
|
||||
'login' => $request->getData('login') ?? '',
|
||||
'password' => $request->getData('password') ?? '',
|
||||
'database' => (string) ($request->getData('database') ?? ''),
|
||||
'login' => (string) ($request->getData('login') ?? ''),
|
||||
'password' => (string) ($request->getData('password') ?? ''),
|
||||
'prefix' => '',
|
||||
]);
|
||||
|
||||
if ($this->remote->getStatus() !== DatabaseStatus::OK) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user