In My PhpStorm 2019.2.5 is it possible to align some PHP code from
$show_only_top_currencies = $this->requestData['show_only_top_currencies'] ?? false;
$retArray = ['message' => ''];
$currenciesCount = Currency::getByActive(true)->count();
$base_currency = Settings::getValue('base_currency', CheckValueType::cvtString, '');
into :
$show_only_top_currencies = $this->requestData['show_only_top_currencies'] ?? false;
$retArray = ['message' => ''];
$currenciesCount = Currency::getByActive(true)->count();
$base_currency = Settings::getValue('base_currency', CheckValueType::cvtString, '');
?
and same for JavaScript code?
