芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/macsidigital/laravel-oauth2-client/src/Connection.php
authenticated(); } /** * Set connection options. * * @param array $options * @return self * */ public function withOptions($options) { $this->options = $options; $this->provider = new GenericProvider($options); return $this; } /** * Handle dynamic method calls into the model. Forward calls to the provider * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { return $this->forwardCallTo($this->provider, $method, $parameters); } }