Skip to content

Commit

Permalink
Needs to be public...
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosen committed Aug 20, 2024
1 parent 5b0e859 commit b120f14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static function create(ContainerInterface $container, array $configuratio
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
*/
private function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager): void {
public function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager): void {
$this->entityTypeManager = $entityTypeManager;
}

Expand All @@ -75,7 +75,7 @@ private function setEntityTypeManager(EntityTypeManagerInterface $entityTypeMana
* @param \Drupal\Core\Session\AccountInterface $currentUser
* The current user.
*/
private function setCurrentUser(AccountInterface $currentUser): void {
public function setCurrentUser(AccountInterface $currentUser): void {
$this->currentUser = $currentUser;
}

Expand All @@ -85,7 +85,7 @@ private function setCurrentUser(AccountInterface $currentUser): void {
* @param \Drupal\thunder_gqls\Wrappers\SearchApiResponse $responseWrapper
* The response wrapper service.
*/
private function setResponseWrapper(SearchApiResponse $responseWrapper): void {
public function setResponseWrapper(SearchApiResponse $responseWrapper): void {
$this->responseWrapper = $responseWrapper;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static function create(
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
*/
private function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager): void {
public function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager): void {
$this->entityTypeManager = $entityTypeManager;
}

Expand All @@ -79,7 +79,7 @@ private function setEntityTypeManager(EntityTypeManagerInterface $entityTypeMana
* @param \Drupal\Core\Language\LanguageManagerInterface $languageManager
* The language manager service.
*/
private function setLanguageManager(LanguageManagerInterface $languageManager): void {
public function setLanguageManager(LanguageManagerInterface $languageManager): void {
$this->languageManager = $languageManager;
}

Expand All @@ -89,7 +89,7 @@ private function setLanguageManager(LanguageManagerInterface $languageManager):
* @param \Drupal\thunder_gqls\Wrappers\SearchApiResponse $responseWrapper
* The response wrapper service.
*/
private function setResponseWrapper(SearchApiResponse $responseWrapper): void {
public function setResponseWrapper(SearchApiResponse $responseWrapper): void {
$this->responseWrapper = $responseWrapper;
}

Expand Down

0 comments on commit b120f14

Please sign in to comment.