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
104 lines (89 loc) · 1.88 KB
/
Copy pathAbstractCommand.php
File metadata and controls
104 lines (89 loc) · 1.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/**
* Created by PhpStorm.
* User: inhere
* Date: 2017-03-17
* Time: 11:40
*/
namespace inhere\console;
use inhere\console\io\Input;
use inhere\console\io\Output;
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'];
/**
* Command constructor.
* @param Input $input
* @param Output $output
*/
public function __construct(Input $input, Output $output)
{
$this->input = $input;
$this->output = $output;
}
abstract public function run($arg = '');
protected function beforeRun($action)
{
}
protected function afterRun($action)
{
}
/**
* handle action/command runtime exception
*
* @param \Exception $e
* @throws \Exception
*/
protected function handleRuntimeException(\Exception $e)
{
throw $e;
}
/**
* @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(array $allowTags)
{
self::$allowTags = $allowTags;
}
}