Newscoop\Entity\Article::getFirstImage PHP Method

getFirstImage() public method

Get article first image.
public getFirstImage ( ) : Newscoop\Image\LocalImage
return Newscoop\Image\LocalImage
    public function getFirstImage()
    {
        return $this->getImages()->isEmpty() ? null : $this->getImages()->first();
    }