-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vitalij Mik
committed
Sep 26, 2024
1 parent
8efb5e3
commit c627daf
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
polyfill/Shopware/Core/Framework/Event/MailActionInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Shopware\Core\Framework\Event; | ||
|
||
if (interface_exists(MailActionInterface::class)) { | ||
return; | ||
} | ||
|
||
use Shopware\Core\Framework\Event\EventData\MailRecipientStruct; | ||
use Shopware\Core\Framework\Log\Package; | ||
|
||
/** | ||
* @deprecated tag:v6.5.0 - Will be removed in v6.5.0 Use MailAware instead | ||
*/ | ||
#[Package('business-ops')] | ||
interface MailActionInterface extends BusinessEventInterface | ||
{ | ||
public function getMailStruct(): MailRecipientStruct; | ||
|
||
public function getSalesChannelId(): ?string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters