codesniffer fixes
This commit is contained in:
@@ -36,7 +36,7 @@ return [
|
||||
'secret' => env('PUSHER_APP_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'options' => [
|
||||
'host' => env('PUSHER_HOST') ?: 'api-' . env('PUSHER_APP_CLUSTER', 'mt1') . '.pusher.com',
|
||||
'host' => env('PUSHER_HOST') === null ?: 'api-' . env('PUSHER_APP_CLUSTER', 'mt1') . '.pusher.com',
|
||||
'port' => env('PUSHER_PORT', 443),
|
||||
'scheme' => env('PUSHER_SCHEME', 'https'),
|
||||
'encrypted' => true,
|
||||
|
||||
@@ -34,7 +34,8 @@ return [
|
||||
|--------------------------------------------------------------------------
|
||||
| Socket connect timeout
|
||||
|--------------------------------------------------------------------------
|
||||
| This option defines the maximum time to wait in seconds for socket connection attempts before failure or timeout, default null = no limit.
|
||||
| This option defines the maximum time to wait in seconds for socket connection attempts before failure or timeout,
|
||||
| default null = no limit.
|
||||
*/
|
||||
'socket_connect_timeout' => env('CLAMAV_SOCKET_CONNECT_TIMEOUT', null),
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ return [
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
'options' => extension_loaded('pdo_mysql') === true ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user