X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fchanges%2FChangesFeed.php;h=4d00fbc543fcc360ac48fcf6fb96d1cea51de6bc;hp=a71dcbb14ca2d52bf20acf9bc004ba6d794bac33;hb=c5a438e9deaef5bcb6bd85ce38e3ec34337698a2;hpb=6f4d15e38580720d8e4915194834d80d873bd58b diff --git a/includes/changes/ChangesFeed.php b/includes/changes/ChangesFeed.php index a71dcbb14c..4d00fbc543 100644 --- a/includes/changes/ChangesFeed.php +++ b/includes/changes/ChangesFeed.php @@ -26,15 +26,13 @@ * @ingroup Feed */ class ChangesFeed { - public $format, $type, $titleMsg, $descMsg; + private $format; /** * @param string $format Feed's format (either 'rss' or 'atom') - * @param string $type Type of feed (for cache keys) */ - public function __construct( $format, $type ) { + public function __construct( $format ) { $this->format = $format; - $this->type = $type; } /**