Skip to content

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-rath committed Apr 7, 2020
1 parent 4483015 commit 7a36732
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Entity/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ public function getId(): string

/**
* {@inheritdoc}
*
* @return self
*/
public function setId(string $id): TaskInterface
{
Expand Down Expand Up @@ -109,6 +111,9 @@ public function getSchedule(): \DateTime
return $this->schedule;
}

/**
* @return self
*/
public function setSchedule(\DateTime $schedule): TaskInterface
{
$this->schedule = $schedule;
Expand Down Expand Up @@ -163,6 +168,9 @@ public function getTaskId(): string
return $this->taskId;
}

/**
* @return self
*/
public function setTaskId(string $taskId): TaskInterface
{
$this->taskId = $taskId;
Expand Down
2 changes: 2 additions & 0 deletions PageTree/PageTreeRouteUpdateHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public function getConfiguration(): TaskHandlerConfiguration

/**
* {@inheritdoc}
*
* @param mixed $workload
*/
public function handle($workload)
{
Expand Down

0 comments on commit 7a36732

Please sign in to comment.