Skip to content

Commit

Permalink
code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DaDeather committed Sep 1, 2019
1 parent 627bfa4 commit c73e67d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Responses/Directive/DialogDelegate/UpdatedIntent.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,31 @@ class UpdatedIntent extends Intent
{
/**
* @param string|null $name
*
* @return $this
*/
public function setName(?string $name): self
{
$this->name = $name;

return $this;
}

/**
* @param string|null $confirmationStatus
*
* @return $this
*/
public function setConfirmationStatus(?string $confirmationStatus): self
{
$this->confirmationStatus = $confirmationStatus;

return $this;
}

/**
* @param Slot[]|null $slots
*
* @return $this
*/
public function setSlots(?array $slots): self
Expand All @@ -40,7 +45,7 @@ public function setSlots(?array $slots): self

/**
* @param string $slotName
* @param Slot $slot
* @param Slot $slot
*
* @return $this
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Responses/Directive/DialogDelegateDirective.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ public function getUpdatedIntent(): ?UpdatedIntent

/**
* @param UpdatedIntent|null $updatedIntent
*
* @return $this
*/
public function setUpdatedIntent(?UpdatedIntent $updatedIntent): self
{
$this->updatedIntent = $updatedIntent;

return $this;
}
}

0 comments on commit c73e67d

Please sign in to comment.