Не ясно, почему когда я из консоли делаю, что в таком духе происходит ошибка. Вроде бы раньше не было.
<?php
namespace console\controllers;
use yii\console\Controller;
use \backend\models\Tests;
class SlugController extends Controller
{
public function actionTests()
{
$this->InitTests();
}
private function InitTests()
{
if(($data = Tests::find()->all()) !== null) {
/*@var $model Tests */
foreach ($data as $model) {
$model->save(true);
}
}
}
}
Exception 'yii\base\UnknownMethodException' with message 'Calling unknown method: yii\console\Request::post()'