Skip to content

Commit ad09e83

Browse files
authored
fix jwt factory configuration merge order (#131)
* 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
1 parent 12b7d21 commit ad09e83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Command/CreateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function __invoke(): int
6363
public function createNamespace(string $path, string $name): string
6464
{
6565
$pluginPath = Str::replace(Plugin::PLUGIN_PATH . '/', '', $path);
66-
list($orgName) = explode('/', $pluginPath);
66+
[$orgName] = explode('/', $pluginPath);
6767
return 'Plugin\\' . Str::studly($orgName) . '\\' . Str::studly($name);
6868
}
6969

0 commit comments

Comments
 (0)