App\Models\Forum\TopicCover::updateFile PHP Method

updateFile() public method

public updateFile ( $filePath, $user )
    public function updateFile($filePath, $user)
    {
        $this->user()->associate($user);
        $this->storeFile($filePath);
        $this->save();
        return $this->fresh();
    }