Remove all constructors.

This commit is contained in:
James Cole
2017-01-30 16:46:30 +01:00
parent 311c1a3c84
commit 1e947870a6
26 changed files with 128 additions and 252 deletions

View File

@@ -23,11 +23,6 @@ use FireflyIII\User;
*/
interface ExportJobRepositoryInterface
{
/**
* @param User $user
*/
public function setUser(User $user);
/**
* @param ExportJob $job
* @param string $status
@@ -67,4 +62,9 @@ interface ExportJobRepositoryInterface
*/
public function getContent(ExportJob $job): string;
/**
* @param User $user
*/
public function setUser(User $user);
}