firefly-iii/app/Repositories/Attachment/AttachmentRepositoryInterface.php

23 lines
437 B
PHP
Raw Normal View History

2015-07-19 02:37:28 -05:00
<?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);
2015-07-19 02:38:44 -05:00
}