1 | <?php |
||
7 | abstract class Screen |
||
8 | { |
||
9 | /** @var \Spatie\PhpUnitWatcher\Terminal */ |
||
10 | protected $terminal; |
||
11 | |||
12 | public function useTerminal(Terminal $terminal) |
||
18 | |||
19 | public function draw() |
||
23 | |||
24 | public function registerListeners() |
||
28 | |||
29 | public function clear() |
||
35 | |||
36 | public function removeAllListeners() |
||
42 | |||
43 | public function clearPrompt() |
||
49 | } |
||
50 |