Skip to content

Commit

Permalink
fluent
Browse files Browse the repository at this point in the history
  • Loading branch information
sokil committed May 15, 2020
1 parent 6b5aca9 commit 1c1ad34
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Message/RichMediaMessage/Button/AbstractButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ public function getColumns()

/**
* @param int $columns
*
* @return self
*/
public function setColumns($columns)
{
Expand All @@ -99,6 +101,8 @@ public function setColumns($columns)
}

$this->columns = $columns;

return $this;
}

/**
Expand All @@ -111,6 +115,8 @@ public function getRows()

/**
* @param int $rows
*
* @return self
*/
public function setRows($rows)
{
Expand All @@ -119,6 +125,8 @@ public function setRows($rows)
}

$this->rows = $rows;

return $this;
}

/**
Expand All @@ -127,6 +135,8 @@ public function setRows($rows)
public function setSilent($isSilent)
{
$this->isSilent = $isSilent;

return $this;
}

/**
Expand All @@ -139,10 +149,14 @@ public function isSilent()

/**
* @param string $bgColor
*
* @return self
*/
public function setBgColor($bgColor)
{
$this->bgColor = $bgColor;

return $this;
}

/**
Expand Down

0 comments on commit 1c1ad34

Please sign in to comment.