Code rearrangement.

This commit is contained in:
James Cole
2016-01-19 13:59:54 +01:00
parent 9360eb6a70
commit f3fff6f1c5
18 changed files with 805 additions and 822 deletions

View File

@@ -15,11 +15,11 @@ interface AttachmentHelperInterface
{
/**
* @param Model $model
* @param Attachment $attachment
*
* @return bool
* @return mixed
*/
public function saveAttachmentsForModel(Model $model);
public function getAttachmentLocation(Attachment $attachment);
/**
* @return MessageBag
@@ -32,10 +32,10 @@ interface AttachmentHelperInterface
public function getMessages();
/**
* @param Attachment $attachment
* @param Model $model
*
* @return mixed
* @return bool
*/
public function getAttachmentLocation(Attachment $attachment);
public function saveAttachmentsForModel(Model $model);
}