Aerys\Body::watch PHP Method

watch() public method

public watch ( callable $func, $data = null )
$func callable
    public function watch(callable $func, $data = null)
    {
        if (!isset($this->string)) {
            $this->watchers[] = [$func, $data];
        }
        return $this;
    }