for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FondBot\Templates\Keyboard;
class ReplyButton implements Button
{
private $label;
/**
* Get name.
*
* @return string
*/
public function getName(): string
return 'ReplyButton';
}
* Get label.
public function getLabel(): string
return $this->label;
* Set label.
* @param string $label
* @return ReplyButton
public function setLabel(string $label): ReplyButton
$this->label = $label;
return $this;