Apple_Actions\Index\Section::perform PHP Method

perform() public method

Get the section data from Apple News.
public perform ( ) : object
return object
    public function perform()
    {
        // Get the section from the API
        $section = $this->get_api()->get_section($this->section_id);
        if (empty($section->data)) {
            return null;
        }
        return $section;
    }