%PDF- %PDF-
Direktori : /home/ugotscom/kma/vendor/botman/driver-web/src/Extras/ |
Current File : /home/ugotscom/kma/vendor/botman/driver-web/src/Extras/TypingIndicator.php |
<?php namespace BotMan\Drivers\Web\Extras; use BotMan\BotMan\Interfaces\WebAccess; class TypingIndicator implements WebAccess { /** @var int */ protected $timeout; /** * @param float $timeout * @return TypingIndicator */ public static function create(float $timeout = 1) { return new static($timeout); } /** * TypingIndicator constructor. * * @param int $timeout */ public function __construct(int $timeout) { $this->timeout = $timeout; } /** * Get the instance as a web accessible array. * This will be used within the WebDriver. * * @return array */ public function toWebDriver() { return [ 'type' => 'typing_indicator', 'timeout' => $this->timeout, ]; } }