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