. */ declare(strict_types=1); namespace FireflyIII\Repositories\Attachment; use Carbon\Carbon; use FireflyIII\Exceptions\FireflyException; use FireflyIII\Models\Attachment; use FireflyIII\User; use Illuminate\Support\Collection; /** * Interface AttachmentRepositoryInterface. */ interface AttachmentRepositoryInterface { /** * @param Attachment $attachment * * @return bool */ public function destroy(Attachment $attachment): bool; /** * @param Attachment $attachment * * @return bool */ public function exists(Attachment $attachment): bool; /** * @return Collection */ public function get(): Collection; /** * @param Attachment $attachment * * @return string */ public function getContent(Attachment $attachment): string; /** * Get attachment note text or empty string. * * @param Attachment $attachment * * @return string */ public function getNoteText(Attachment $attachment): ?string; /** * @param User $user */ public function setUser(User $user); /** * @param array $data * * @return Attachment * @throws FireflyException */ public function store(array $data): Attachment; /** * @param Attachment $attachment * @param array $attachmentData * * @return Attachment */ public function update(Attachment $attachment, array $attachmentData): Attachment; }