forked from inhere/php-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractCommand.php
More file actions
72 lines (61 loc) · 1.26 KB
/
Copy pathAbstractCommand.php
File metadata and controls
72 lines (61 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* Created by PhpStorm.
* User: inhere
* Date: 2017-03-17
* Time: 11:40
*/
namespace inhere\console;
use inhere\console\utils\TraitInputOutput;
use inhere\console\utils\TraitInteract;
/**
* Class AbstractCommand
* @package inhere\console
*/
abstract class AbstractCommand
{
use TraitInputOutput;
use TraitInteract;
// command description message
// please use the const setting current controller/command description
const DESCRIPTION = '';
/**
* command name e.g 'test' 'test:one'
* @var string
*/
private $name = '';
/**
* allow display message tags in the command
* @var array
*/
protected static $allowTags = ['description', 'usage', 'example'];
abstract public function run($arg = '');
/**
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @return array
*/
public static function getAllowTags()
{
return self::$allowTags;
}
/**
* @param array $allowTags
*/
public static function setAllowTags($allowTags)
{
self::$allowTags = $allowTags;
}
}