mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-21 09:00:07 +00:00
PHP7 compatible function definitions.
This commit is contained in:
@@ -22,18 +22,18 @@ interface ExportJobRepositoryInterface
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function cleanup();
|
||||
public function cleanup(): bool;
|
||||
|
||||
/**
|
||||
* @return ExportJob
|
||||
*/
|
||||
public function create();
|
||||
public function create(): ExportJob;
|
||||
|
||||
/**
|
||||
* @param string $key
|
||||
*
|
||||
* @return ExportJob|null
|
||||
*/
|
||||
public function findByKey(string $key);
|
||||
public function findByKey(string $key): ExportJob;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user