Edit File: Watcher.php
<?php namespace Laravel\Telescope\Watchers; abstract class Watcher { /** * The configured watcher options. * * @var array */ public $options = []; /** * Create a new watcher instance. * * @param array $options * @return void */ public function __construct(array $options = []) { $this->options = $options; } /** * Register the watcher. * * @param \Illuminate\Contracts\Foundation\Application $app * @return void */ abstract public function register($app); }
Back to File Manager