*/ trait WorkerContextAwareTrait { private $isWorkerContext = false; /** * @return $this */ public function applyWorkerContext() { $this->isWorkerContext = true; return $this; } /** * @return bool */ public function isWorkerContext() { return $this->isWorkerContext; } }