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 ImportJobRepositoryInterface
{
/**
* @param User $user
*/
public function setUser(User $user);
/**
* @param string $fileType
*
@@ -41,4 +36,9 @@ interface ImportJobRepositoryInterface
* @return ImportJob
*/
public function findByKey(string $key): ImportJob;
/**
* @param User $user
*/
public function setUser(User $user);
}