mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 10:53:37 +00:00
22 lines
436 B
PHP
22 lines
436 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace FireflyIII\Repositories\Attachment;
|
||
|
|
||
|
use FireflyIII\Models\Attachment;
|
||
|
|
||
|
/**
|
||
|
* Interface AttachmentRepositoryInterface
|
||
|
*
|
||
|
* @package FireflyIII\Repositories\Attachment
|
||
|
*/
|
||
|
interface AttachmentRepositoryInterface
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @param Attachment $attachment
|
||
|
* @param array $attachmentData
|
||
|
*
|
||
|
* @return Attachment
|
||
|
*/
|
||
|
public function update(Attachment $attachment, array $attachmentData);
|
||
|
}
|