Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark UrlRewriteGraphQl, User, Vault, Webapi, Widget and Wishlist interfaces as API #32076

Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* Interface for resolution of custom URLs.
*
* It can be used, for example, to resolve '\' URL path to a 'Home' page.
*
* @api
*/
interface CustomUrlLocatorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

/**
* When a notification cannot be sent.
*
* @api
*/
interface NotificationExceptionInterface extends \Throwable
{
Expand Down
2 changes: 2 additions & 0 deletions app/code/Magento/User/Model/Spi/NotificatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

/**
* Use to send out notifications about user related events.
*
* @api
*/
interface NotificatorInterface
{
Expand Down
2 changes: 2 additions & 0 deletions app/code/Magento/Vault/Block/Customer/IconInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

/**
* Interface IconInterface
*
* @api
*/
interface IconInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Widget/Block/BlockInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/**
* Interface \Magento\Widget\Block\BlockInterface
*
* @api
*/
interface BlockInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Wishlist/Controller/IndexInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/**
* Interface \Magento\Wishlist\Controller\IndexInterface
*
* @api
*/
interface IndexInterface extends \Magento\Framework\App\ActionInterface, ViewInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/**
* Interface \Magento\Wishlist\Controller\WishlistProviderInterface
*
* @api
*/
interface WishlistProviderInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/**
* Interface \Magento\Wishlist\Model\AuthenticationStateInterface
*
* @api
*/
interface AuthenticationStateInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

/**
* Wishlist items products collection builder
*
* @api
*/
interface CollectionBuilderInterface
{
Expand Down