Imdb\Title::endyear PHP Метод

endyear() публичный Метод

Get end-year Usually this returns the same value as year() -- except for those cases where production spanned multiple years, usually for series
См. также: IMDB page / (TitlePage)
public endyear ( ) : string
Результат string year
    public function endyear()
    {
        if ($this->main_endyear == -1) {
            $this->title_year();
        }
        return $this->main_endyear;
    }