@@ -45,8 +45,8 @@ |
||
45 | 45 | try { |
46 | 46 | |
47 | 47 | $host = 'mysql' . |
48 | - ':host=' . $setting['host'] . |
|
49 | - ';dbname=' . $setting['dbname'] . |
|
48 | + ':host=' . $setting['host'] . |
|
49 | + ';dbname=' . $setting['dbname'] . |
|
50 | 50 | ';charset=' . $setting['charset']; |
51 | 51 | |
52 | 52 | $user = (string) $setting['user']; |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public static function get(array $setting): MessengerInterface |
32 | 32 | { |
33 | - $sender = $setting['config']['sender'] ?? ''; |
|
33 | + $sender = $setting['config']['sender'] ?? ''; |
|
34 | 34 | $recipients = $setting['config']['recipients'] ?? []; |
35 | 35 | |
36 | 36 | $instance = new Mail(); |
@@ -40,12 +40,12 @@ |
||
40 | 40 | */ |
41 | 41 | public static function get(array $setting): MessengerInterface |
42 | 42 | { |
43 | - $sender = $setting['config']['sender'] ?? ''; |
|
43 | + $sender = $setting['config']['sender'] ?? ''; |
|
44 | 44 | $recipients = $setting['config']['recipients'] ?? []; |
45 | - $host = $setting['config']['host'] ?? ''; |
|
46 | - $user = $setting['config']['user'] ?? ''; |
|
47 | - $pass = $setting['config']['pass'] ?? ''; |
|
48 | - $port = $setting['config']['port'] ?? ''; |
|
45 | + $host = $setting['config']['host'] ?? ''; |
|
46 | + $user = $setting['config']['user'] ?? ''; |
|
47 | + $pass = $setting['config']['pass'] ?? ''; |
|
48 | + $port = $setting['config']['port'] ?? ''; |
|
49 | 49 | |
50 | 50 | $instance = new Smtp($user, $pass, $host, (int) $port); |
51 | 51 | $instance->setSubject(__('core', 'messenger_text_mail_subject')); |
@@ -40,8 +40,8 @@ |
||
40 | 40 | */ |
41 | 41 | public static function get(array $setting): MessengerInterface |
42 | 42 | { |
43 | - $apiKey = $setting['config']['api_key'] ?? ''; |
|
44 | - $sender = $setting['config']['sender'] ?? ''; |
|
43 | + $apiKey = $setting['config']['api_key'] ?? ''; |
|
44 | + $sender = $setting['config']['sender'] ?? ''; |
|
45 | 45 | $recipients = $setting['config']['recipients'] ?? []; |
46 | 46 | |
47 | 47 | $instance = new Sendgrid($apiKey); |
@@ -274,8 +274,8 @@ |
||
274 | 274 | { |
275 | 275 | $table = [ |
276 | 276 | 'filter' => $this->tableFilterLogs . ':' . $ip, |
277 | - 'session' => $this->tableSessions . ':' . $ip, |
|
278 | - 'rule' => $this->tableRuleList . ':' . $ip, |
|
277 | + 'session' => $this->tableSessions . ':' . $ip, |
|
278 | + 'rule' => $this->tableRuleList . ':' . $ip, |
|
279 | 279 | ]; |
280 | 280 | |
281 | 281 | return $table[$type] ?? ''; |
@@ -100,8 +100,8 @@ |
||
100 | 100 | $path = []; |
101 | 101 | |
102 | 102 | $path['filter'] = $this->directory . '/' . $this->tableFilterLogs . '/' . $ip . '.' . $this->extension; |
103 | - $path['session'] = $this->directory . '/' . $this->tableSessions . '/' . $ip . '.' . $this->extension; |
|
104 | - $path['rule'] = $this->directory . '/' . $this->tableRuleList . '/' . $ip . '.' . $this->extension; |
|
103 | + $path['session'] = $this->directory . '/' . $this->tableSessions . '/' . $ip . '.' . $this->extension; |
|
104 | + $path['rule'] = $this->directory . '/' . $this->tableRuleList . '/' . $ip . '.' . $this->extension; |
|
105 | 105 | |
106 | 106 | return $path[$type] ?? ''; |
107 | 107 | } |
@@ -243,7 +243,7 @@ |
||
243 | 243 | { |
244 | 244 | $driverType = (string) $this->getOption('driver_type'); |
245 | 245 | |
246 | - return $this->directory . '/' . $this->channel . '_' . $driverType . '_' . $this->checkpoint; |
|
246 | + return $this->directory . '/' . $this->channel . '_' . $driverType . '_' . $this->checkpoint; |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
@@ -112,10 +112,10 @@ |
||
112 | 112 | |
113 | 113 | $data = []; |
114 | 114 | |
115 | - $data[0] = $record['ip'] ?? 'null'; |
|
116 | - $data[1] = $record['session_id'] ?? 'null'; |
|
115 | + $data[0] = $record['ip'] ?? 'null'; |
|
116 | + $data[1] = $record['session_id'] ?? 'null'; |
|
117 | 117 | $data[2] = $record['action_code'] ?? 'null'; |
118 | - $data[3] = $record['timesamp'] ?? 'null'; |
|
118 | + $data[3] = $record['timesamp'] ?? 'null'; |
|
119 | 119 | |
120 | 120 | file_put_contents($this->filePath, implode(',', $data) . "\n", FILE_APPEND | LOCK_EX); |
121 | 121 | } |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public static function get(array $setting): CaptchaInterface |
41 | 41 | { |
42 | - $type = $setting['config']['type'] ?? 'alnum'; |
|
42 | + $type = $setting['config']['type'] ?? 'alnum'; |
|
43 | 43 | $length = $setting['config']['length'] ?? 8; |
44 | 44 | |
45 | 45 | $imageCaptchaConfig = []; |