count = $this->count ?: 3; } public function run(): string { $comments = PostComment::find()->orderBy(['created_at' => SORT_DESC])->limit($this->count)->all(); return $this->render('comments', [ 'comments' => $comments, ]); } }