connectedRepository = $connectedRepository; } /** * @return ConnectedRepository */ public function getConnectedRepository() { return $this->connectedRepository; } /** * @param GitSource */ public function setGitSource(GitSource $gitSource) { $this->gitSource = $gitSource; } /** * @return GitSource */ public function getGitSource() { return $this->gitSource; } /** * @param RepoSource */ public function setRepoSource(RepoSource $repoSource) { $this->repoSource = $repoSource; } /** * @return RepoSource */ public function getRepoSource() { return $this->repoSource; } /** * @param StorageSource */ public function setStorageSource(StorageSource $storageSource) { $this->storageSource = $storageSource; } /** * @return StorageSource */ public function getStorageSource() { return $this->storageSource; } /** * @param StorageSourceManifest */ public function setStorageSourceManifest(StorageSourceManifest $storageSourceManifest) { $this->storageSourceManifest = $storageSourceManifest; } /** * @return StorageSourceManifest */ public function getStorageSourceManifest() { return $this->storageSourceManifest; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Source::class, 'Google_Service_CloudBuild_Source');