Skip to content

Commit

Permalink
[AlfaBankByBridge] fix codestyle and lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lassana committed Dec 19, 2021
1 parent 24ea159 commit ad80f8c
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions bridges/AlfaBankByBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class AlfaBankByBridge extends BridgeAbstract {
'business' => array(
'name' => 'Альфа Бизнес',
'type' => 'list',
'title' => 'В зависимости от выбора, возращает уведомления для клиентов физ. лиц либо для клиентов-юридических лиц и ИП',
'title' => 'В зависимости от выбора, возращает уведомления для" .
" клиентов физ. лиц либо для клиентов-юридических лиц и ИП',
'values' => array(
'Новости' => 'news',
'Новости бизнеса' => 'newsBusiness'
Expand All @@ -34,9 +35,7 @@ public function collectData() {
if($business) {
$mainPageUrl .= '?business=true';
}
$html = getSimpleHTMLDOM($mainPageUrl)
or returnServerError('Could not request AlfaBank.');

$html = getSimpleHTMLDOM($mainPageUrl);
$limit = 0;

foreach($html->find('a.notifications__item') as $element) {
Expand All @@ -57,7 +56,7 @@ public function collectData() {

if($fullContent) {
$itemHtml = getSimpleHTMLDOM($itemUrl);
if($itemHtml){
if($itemHtml) {
$item['content'] = $itemHtml->find('div.now-p__content-text', 0)->innertext;
}
}
Expand All @@ -72,9 +71,13 @@ public function getIcon() {
return static::URI . '/local/images/favicon.ico';
}

function ruMonthsToEn($date) {
$ruMonths = array( 'Января', 'Февраля', 'Марта', 'Апреля', 'Мая', 'Июня', 'Июля', 'Августа', 'Сентября', 'Октября', 'Ноября', 'Декабря' );
$enMonths = array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' );
private function ruMonthsToEn($date) {
$ruMonths = array(
'Января', 'Февраля', 'Марта', 'Апреля', 'Мая', 'Июня',
'Июля', 'Августа', 'Сентября', 'Октября', 'Ноября', 'Декабря' );
$enMonths = array(
'January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December' );
return str_replace($ruMonths, $enMonths, $date);
}
}

0 comments on commit ad80f8c

Please sign in to comment.