Skip to content

Commit

Permalink
adding fixes for wrong file name (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic authored May 6, 2024
1 parent b69c7c7 commit 6424603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cache/ManifestCacheExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* The project config class.
*/
class ManifestCache extends AbstractManifestCache
class ManifestCacheExample extends AbstractManifestCache
{
/**
* Get cache name.
Expand Down
2 changes: 1 addition & 1 deletion src/Cli/AbstractCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ public function getVendorPrefix(array $args = []): string
if (empty($vendorPrefix)) {
$composer = $this->getComposer($args);

$vendorPrefix = $composer['extra']['imposter']['namespace'] ?? 'EightshiftLibs';
$vendorPrefix = $composer['extra']['strauss']['namespace_prefix'] ?? 'EightshiftLibs';
}

return $vendorPrefix;
Expand Down

0 comments on commit 6424603

Please sign in to comment.