- Issue created by @danchadwick
- πΊπΈUnited States danchadwick Boston
Notable changes:
The (presumably intended to be private) global function
radixCleanIdentifier
was changed to snake-caseradix_clean_identifier
. It is not expected that subthemes would call this function. However, if they do, they would need to update the function call accordingly.The drush command
radix:create
had it annotation corrected to remove themachine_name
option, which is not implemented.Furthermore, the drush documentation indicates that PHP 8+ only commands should be written with PHP attributes. This would be a separate issue. The annotation would be something like:
use Drush\Attributes as CLI; [snip] /** * Create a radix sub-theme. */ #[CLI\Command(name: 'radix:create', aliases: ['radix'])] #[CLI\Argument(name: 'name', description: 'The machine-readable name of your sub-theme.')] #[CLI\Usage(name: 'drush radix:create my-theme', description: 'Creates a Radix sub-theme called my_theme, using the radix_starterkit.')]
-
danchadwick β
committed 076ad8d4 on 6.0.x
Issue #3500012 by danchadwick: Resolve coding style deviations in GitLab...
-
danchadwick β
committed 076ad8d4 on 6.0.x
- πΊπΈUnited States danchadwick Boston
All CI code-standard test pass now. Some of the eslint ones were made to pass by disabling the tests to avoid coding changes.