1 | <?php |
||
12 | class Watcher |
||
13 | { |
||
14 | /** @var \Symfony\Component\Finder\Finder */ |
||
15 | protected $finder; |
||
16 | |||
17 | /** @var \React\EventLoop\LibEventLoop */ |
||
18 | protected $loop; |
||
19 | |||
20 | /** @var \Spatie\PhpUnitWatcher\Terminal */ |
||
21 | protected $terminal; |
||
22 | |||
23 | /** @var array */ |
||
24 | protected $options; |
||
25 | |||
26 | public function __construct(Finder $finder, array $options) |
||
36 | |||
37 | public function startWatching() |
||
59 | } |
||
60 |