make sure class is compatible with interface.

This commit is contained in:
James Cole 2018-05-10 09:18:40 +02:00
parent cabcb9c6d0
commit 73f29ebf69
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 2 additions and 6 deletions

View File

@ -929,10 +929,8 @@ class BunqRoutine implements RoutineInterface
/**
* @param ImportJob $job
*
* @return mixed
*/
public function setJob(ImportJob $job)
public function setJob(ImportJob $job): void
{
// TODO: Implement setJob() method.
throw new NotImplementedException;

View File

@ -608,10 +608,8 @@ class SpectreRoutine implements RoutineInterface
/**
* @param ImportJob $job
*
* @return mixed
*/
public function setJob(ImportJob $job)
public function setJob(ImportJob $job): void
{
// TODO: Implement setJob() method.
throw new NotImplementedException;