Kahlan\Jit\Interceptor::unwatch PHP Method

unwatch() public method

Unwatch a watched file
public unwatch ( $files )
$files The array of file paths to unwatch.
    public function unwatch($files)
    {
        $files = (array) $files;
        foreach ($files as $file) {
            $path = realpath($file);
            unset($this->_watched[$path]);
        }
        $this->refreshWatched();
    }