1 Star 3 Fork 26

yg178/php-console

forked from inhere/php-console 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NotifyMessage.php 633 Bytes
一键复制 编辑 原始数据 按行查看 历史
inhere 提交于 2017-12-22 23:24 +08:00 . some update. begin add generate auto-complete script
<?php
/**
* Created by PhpStorm.
* User: inhere
* Date: 2017-12-21
* Time: 13:31
*/
namespace Inhere\Console\Components;
/**
* Class NotifyMessage - like progress, spinner ....
* @package Inhere\Console\Components
* @link https://github.com/wp-cli/php-cli-tools/tree/master/lib/cli
*/
class NotifyMessage
{
/** @var int Speed value. allow 1 - 10 */
protected $speed = 2;
/**
* @return int
*/
public function getSpeed(): int
{
return $this->speed;
}
/**
* @param int $speed
*/
public function setSpeed($speed)
{
$this->speed = (int)$speed;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/hwsyy/php-console.git
git@gitee.com:hwsyy/php-console.git
hwsyy
php-console
php-console
master

搜索帮助