Skip to content

Commit f5a013e

Browse files
committed
Remove links from annotations
1 parent 075d377 commit f5a013e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

lib/internal/Magento/Framework/App/Action/AbstractAction.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
/**
1212
* Abstract redirect/forward action class
1313
*
14-
* @deprecated Use \Magento\Framework\App\ActionInterface
15-
* @see https://community.magento.com/t5/Magento-DevBlog/Decomposition-of-Magento-Controllers/ba-p/430883
14+
* @deprecated You should avoid inheritance in your controllers
15+
* @see \Magento\Framework\App\ActionInterface
1616
*/
1717
abstract class AbstractAction implements \Magento\Framework\App\ActionInterface
1818
{
@@ -60,7 +60,6 @@ abstract public function dispatch(RequestInterface $request);
6060
* Retrieve request object
6161
*
6262
* @return \Magento\Framework\App\RequestInterface
63-
* @deprecated This method should not be used anymore. Inject `RequestInterface` into constructor instead
6463
*/
6564
public function getRequest()
6665
{
@@ -71,7 +70,6 @@ public function getRequest()
7170
* Retrieve response object
7271
*
7372
* @return \Magento\Framework\App\ResponseInterface
74-
* @deprecated This method should not be used anymore. Inject `ResponseInterface` into constructor instead
7573
*/
7674
public function getResponse()
7775
{

lib/internal/Magento/Framework/App/Action/Action.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* It contains standard action behavior (event dispatching, flag checks)
2424
* Action classes that do not extend from this class will lose this behavior and might not function correctly
2525
*
26-
* @deprecated Use \Magento\Framework\App\ActionInterface
27-
* @see https://community.magento.com/t5/Magento-DevBlog/Decomposition-of-Magento-Controllers/ba-p/430883
26+
* @deprecated You should avoid inheritance in your controllers
27+
* @see \Magento\Framework\App\ActionInterface
2828
*
2929
* phpcs:disable Magento2.Classes.AbstractApi
3030
* @api

0 commit comments

Comments
 (0)