Skip to content

Commit

Permalink
fix jwt factory configuration merge order (#131)
Browse files Browse the repository at this point in the history
* fix jwt factory configuration merge order

* Apply cs fix

* ci: remove json-fix script and composer json checks

- Remove json-fix script from composer.json
- Remove Check Composer Json step from GitHub Actions workflow
  • Loading branch information
zds-s authored Nov 22, 2024
1 parent 12b7d21 commit ad09e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function __invoke(): int
public function createNamespace(string $path, string $name): string
{
$pluginPath = Str::replace(Plugin::PLUGIN_PATH . '/', '', $path);
list($orgName) = explode('/', $pluginPath);
[$orgName] = explode('/', $pluginPath);
return 'Plugin\\' . Str::studly($orgName) . '\\' . Str::studly($name);
}

Expand Down

0 comments on commit ad09e83

Please sign in to comment.