-
-
Notifications
You must be signed in to change notification settings - Fork 227
Closed
Milestone
Description
Winter CMS Build
dev-develop
PHP Version
8.0
Database engine
MySQL/MariaDB
Plugins installed
No response
Issue description
Winter CMS 1.2
Console command create:plugin incorrectly changes namespace. Camelcase names are changed to capitalized names.
Example:
php artisan create:plugin WebVPF.MyNamePlugin.php file generation result:
<?php namespace Webvpf\Myname;
...Must be:
<?php namespace WebVPF\MyName;Steps to replicate
Create a plugin
Workaround
No response