FluxBB\Actions\ViewCategory::run PHP Метод

run() защищенный Метод

protected run ( )
    protected function run()
    {
        $slug = $this->get('slug');
        $category = $this->categories->findBySlug($slug);
        return ['category' => $category, 'categories' => $this->categories->getByParent($slug), 'conversations' => $this->categories->getConversationsIn($category)];
    }
ViewCategory