Newscoop\Entity\Article::isLocked PHP Method

isLocked() public method

Checks if article is locked or not.
public isLocked ( ) : boolean
return boolean
    public function isLocked()
    {
        if (null === $this->getLockUser() && $this->getLockTime() === null) {
            return false;
        }
        return true;
    }