app\models\UserProfileCustomization::cover PHP Method

cover() public method

public cover ( )
    public function cover()
    {
        if ($this->cover === null) {
            $this->cover = new ProfileCover($this->user_id, $this->cover_json);
        }
        return $this->cover;
    }