1 | <?php |
||
49 | class AnnotateCommand extends AbstractCommand |
||
50 | { |
||
51 | /** |
||
52 | * Available arguments for this command. |
||
53 | * |
||
54 | * @var array $arguments |
||
55 | */ |
||
56 | protected $arguments = [ |
||
57 | 'file' => [] |
||
58 | ]; |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | * |
||
63 | * @var mixed $options |
||
64 | */ |
||
65 | protected $options = [ |
||
66 | '--rev' => '', |
||
67 | '--no-follow' => false, |
||
68 | '--text' => false, |
||
69 | '--user' => false, |
||
70 | '--file' => false, |
||
71 | '--date' => false, |
||
72 | '--number' => false, |
||
73 | '--changeset' => false, |
||
74 | '--line-number' => false, |
||
75 | '--ignore-all-space' => false, |
||
76 | '--ignore-space-change' => false, |
||
77 | '--ignore-blank-lines' => false, |
||
78 | '--include' => [], |
||
79 | '--exclude' => [], |
||
80 | ]; |
||
81 | |||
82 | /** |
||
83 | * @return array |
||
84 | */ |
||
85 | 1 | public function getFile() |
|
89 | |||
90 | /** |
||
91 | * @param string $file |
||
92 | * |
||
93 | * @return void |
||
94 | */ |
||
95 | 1 | public function addFile($file) |
|
99 | |||
100 | /** |
||
101 | * {@inheritdoc} |
||
102 | */ |
||
103 | 1 | public function __toString() |
|
112 | } |
||
113 |