rsBuilder = $builder ?: new Builder($options, 'App\Services\Rackspace'); } /** * Creates a new Object Store (Rackspace CDN) v1 service. * * @param array $options options that will be used in configuring the service */ public function objectStoreCdnV1(array $options = []): ObjectStoreCdnService { $defaults = ['catalogName' => 'cloudFilesCDN', 'catalogType' => 'rax:object-cdn']; return $this->rsBuilder->createService('ObjectStoreCdn\\v1', array_merge($defaults, $options)); } }