Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • wpdesk/wp-init
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
# wp-init changelog # wp-init changelog
## [0.10.2] - 2024-10-08
### Fixed
- Typo in configuration parameter name.
## [0.10.1] - 2024-10-08 ## [0.10.1] - 2024-10-08
### Changed ### Changed
- `wpinit` CLI command automatically seeks for potential plugin file, instead of relying on passing it as argument. - `wpinit` CLI command automatically seeks for potential plugin file, instead of relying on passing it as argument.
......
...@@ -51,7 +51,7 @@ class ConditionalExtension implements Extension { ...@@ -51,7 +51,7 @@ class ConditionalExtension implements Extension {
if ( class_exists( \WPDesk\License\LicenseServer\PluginRegistrator::class ) ) { if ( class_exists( \WPDesk\License\LicenseServer\PluginRegistrator::class ) ) {
$definitions[ WPDeskLicenseBridge::class ] = ( new AutowireDefinitionHelper() ) $definitions[ WPDeskLicenseBridge::class ] = ( new AutowireDefinitionHelper() )
->constructorParameter( 'proudct_id', $config->get( 'product_id' ) ) ->constructorParameter( 'product_id', $config->get( 'product_id' ) )
->constructorParameter( 'shops', (array) $config->get( 'shops', [] ) ); ->constructorParameter( 'shops', (array) $config->get( 'shops', [] ) );
} }
......