diff options
author | Nikki Nikkhoui <nnikkhoui@wikimedia.org> | 2020-07-10 09:14:50 -0700 |
---|---|---|
committer | Nikki Nikkhoui <nnikkhoui@wikimedia.org> | 2020-07-11 15:33:34 -0700 |
commit | 5fb9e95b22c92acbd1614e5bb901f4fd74c48b3c (patch) | |
tree | 67b675b000ce77af2eee586662457e6097d2f8fa /includes/changes/ChannelFeed.php | |
parent | a09d7fb118d3f1cfef948ee4a77e8e588af6625b (diff) | |
download | mediawikicore-5fb9e95b22c92acbd1614e5bb901f4fd74c48b3c.tar.gz mediawikicore-5fb9e95b22c92acbd1614e5bb901f4fd74c48b3c.zip |
Mark potential abstract classes stable for subclassing
Going through some more abstract classes in core, and
marking those that are extended by extensions as
stable.
I have limited knowledge on the uses of these classes so
marking for vibisility/review.
Bug: T247862
Change-Id: I1939bb11038ec2536eebbdbd12524e83d615b86b
Diffstat (limited to 'includes/changes/ChannelFeed.php')
-rw-r--r-- | includes/changes/ChannelFeed.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/changes/ChannelFeed.php b/includes/changes/ChannelFeed.php index 80d2db75bbd3..10fd90dda3bb 100644 --- a/includes/changes/ChannelFeed.php +++ b/includes/changes/ChannelFeed.php @@ -24,6 +24,7 @@ /** * Class to support the outputting of syndication feeds in Atom and RSS format. * + * @stable for subclassing * @ingroup Feed */ abstract class ChannelFeed extends FeedItem { @@ -32,12 +33,15 @@ abstract class ChannelFeed extends FeedItem { protected $templateParser; /** + * @stable for calling + * * @param string|Title $title Feed's title * @param string $description * @param string $url URL uniquely designating the feed. * @param string $date Feed's date * @param string $author Author's user name * @param string $comments + * */ public function __construct( $title, $description, $url, $date = '', $author = '', $comments = '' |