mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-11 04:08:12 +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);
|
||
|
|
}
|