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 95a0b77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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: 1 addition & 1 deletion PageTree/PageTreeRouteUpdateHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function getConfiguration(): TaskHandlerConfiguration
}

/**
* {@inheritdoc}
* @param array<string, mixed> $workload
*/
public function handle($workload)
{
Expand Down

0 comments on commit 95a0b77

Please sign in to comment.