Skip to content

Commit

Permalink
OP-319 - Lexical error has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkalon committed Aug 20, 2024
1 parent ebf8ae9 commit 0198a0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ use Webmozart\Assert\Assert;
final class ShippingExportController extends ResourceController
{
public const SELECT_PARCEL_TEMPLATE_EVENT = 'export_shipping_select_parcel_template';
public const SELECT_PARCEL_TEMPLATE_EVENT = 'select_parcel_template';
use SelectParcelTemplateTrait;
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/services.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
id="bitbag.sylius_inpost_plugin.event_listener.inpost_select_parcel_template"
>
<argument type="service" id="bitbag.sylius_inpost_plugin.select_parcel_template_action"/>
<tag name="kernel.event_listener" event="bitbag.shipping_export.export_shipping_select_parcel_template" method="setParcelTemplate"/>
<tag name="kernel.event_listener" event="bitbag.shipping_export.select_parcel_template" method="setParcelTemplate"/>
</service>

<service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

final class ShippingExportController extends ResourceController
{
public const SELECT_PARCEL_TEMPLATE_EVENT = 'export_shipping_select_parcel_template';
public const SELECT_PARCEL_TEMPLATE_EVENT = 'select_parcel_template';

use SelectParcelTemplateTrait;

Expand Down

0 comments on commit 0198a0e

Please sign in to comment.