芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/sentry/sentry/src/State/Layer.php
client = $client; $this->scope = $scope; } /** * Gets the client held by this layer. */ public function getClient(): ?ClientInterface { return $this->client; } /** * Sets the client held by this layer. * * @param ClientInterface|null $client The client instance * * @return $this */ public function setClient(?ClientInterface $client): self { $this->client = $client; return $this; } /** * Gets the scope held by this layer. */ public function getScope(): Scope { return $this->scope; } /** * Sets the scope held by this layer. * * @param Scope $scope The scope instance * * @return $this */ public function setScope(Scope $scope): self { $this->scope = $scope; return $this; } }