Skip to content

Commit

Permalink
Merge pull request #434 from infinum/improve/project-assets-prefix
Browse files Browse the repository at this point in the history
Improve getAssetsPrefix method
  • Loading branch information
piqusy authored Oct 3, 2024
2 parents 888d6c6 + 9abdf0b commit ddbe7b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Enqueue/Admin/EnqueueAdminExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function register(): void
*/
public function getAssetsPrefix(): string
{
return Config::getProjectName();
return Config::getProjectTextDomain();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Enqueue/Blocks/EnqueueBlocksExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function register(): void
*/
public function getAssetsPrefix(): string
{
return Config::getProjectName();
return Config::getProjectTextDomain();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Enqueue/Theme/EnqueueThemeExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function register(): void
*/
public function getAssetsPrefix(): string
{
return Config::getProjectName();
return Config::getProjectTextDomain();
}

/**
Expand Down

0 comments on commit ddbe7b8

Please sign in to comment.