![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/spatie/laravel-ray/src/Watchers/ |
<?php namespace Spatie\LaravelRay\Watchers; use Spatie\LaravelRay\RayProxy; abstract class Watcher { /** @var bool */ protected $enabled = false; /** @var \Spatie\LaravelRay\RayProxy|null */ protected $rayProxy; abstract public function register(): void; public function enabled(): bool { return $this->enabled; } public function enable(): Watcher { $this->enabled = true; return $this; } public function disable(): Watcher { $this->enabled = false; return $this; } public function setRayProxy(RayProxy $rayProxy): Watcher { $this->rayProxy = $rayProxy; return $this; } }