for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Botonomous;
/**
* Class Action.
*
* Model for Actions
*/
class Action extends AbstractBaseSlack
{
private $name;
private $text;
private $value;
private $type;
* @return string
public function getName()
return $this->name;
}
* @param string $name
public function setName($name)
$this->name = $name;
public function getText()
return $this->text;
* @param string $text
public function setText($text)
$this->text = $text;
public function getValue()
return $this->value;
* @param string $value
public function setValue($value)
$this->value = $value;
public function getType()
return $this->type;
* @param string $type
public function setType($type)
$this->type = $type;