App\Models\Forum\TopicCover::updateFile PHP Méthode

updateFile() public méthode

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