Необходимо создать контроллер для парсинга на Yii2. Подключил библиотеку Simple HTML DOM parser. Но почему-то не видит методы find. Не могу понять, почему.
<?php
namespace app\controllers;
use keltstr\simplehtmldom\SimpleHTMLDom;
use yii\web\Controller;
class ParseController extends Controller
{
public $news;
public function actionParse($sel_from,$sel_as,$url,$how_many_news)
{
$html = SimpleHTMLDom::file_get_html($url);
$i='0';
foreach ($html->find($sel_from) as $article)
{
$this->news=$article->find($sel_as,0)->innertext;
$i++;
if ($i == $how_many_news) break; // прерывание цикла
}
return $this->news;
}
}