callable = $callable; $this->shared = (bool)$shared; } /** * @return callable */ public function getCallable() { return $this->callable; } /** * @return bool */ public function isShared() { return $this->shared; } }