izniburak/pdox

Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)`

Closed this issue · 1 comments

$config['port'] = isset($config['port']) ? $config['port'] : strstr($config['host'], ':') ? explode(':', $config['host'])[1] : '';
--------->
$config['port'] = isset($config['port']) ? $config['port'] : (strstr($config['host'], ':') ? explode(':', $config['host'])[1] : '');

Hi,
Thank you for your feedback. It has been fixed!