9-20 Гаряча лінія Олександра Поворознюка 068 802 3551 
Додати свою новину Відкрити/Закрити ФільтриСкинути

Дубов'язівська ОТГ

Нарада в Дубов’язівській селищній раді: обговорення питань громади

news_source_manager = $news_source_manager;
$this->news_parser = $news_parser;
}

/**
* @param array $sources
* @return mixed
*/
public function get_news(array $sources): array
{
$news = [];
/**
* @var news_source_interface $source
*/
foreach ($sources as $source)
{
$news_from_source = $this->get_news_from_source($source);
$news = array_merge($news, $news_from_source);
}

return $news;
}

/**
* @param news_source_interface $source
* @return array
*/
public function get_news_from_source(news_source_interface $source): array
{
$source_content = $source->get_news_content();
$parsed_news = $this->news_parser->parse($source_content);

return $parsed_news;
}

/**
* @param $source_name
* @return news_source_interface
*/
public function get_news_source($source_name): news_source_interface
{
return $this->news_source_manager->get_source($source_name);
}
}

Увійти, щоб коментувати

Зареєструватися, щоб коментувати

Пароль буде надіслано вам на email.

x
Помічник