| 1 | <?php |
||
| 12 | class Watcher |
||
| 13 | { |
||
| 14 | /** @var \Symfony\Component\Finder\Finder */ |
||
| 15 | protected $finder; |
||
| 16 | |||
| 17 | /** @var \React\EventLoop\LoopInterface */ |
||
| 18 | protected $loop; |
||
| 19 | |||
| 20 | public function __construct(Finder $finder, LoopInterface $loop) |
||
| 25 | |||
| 26 | public function startWatching(Closure $callback) |
||
| 39 | } |
||
| 40 |