RCFilters: Move parameter operations to ViewModel
[lhc/web/wiklou.git] / tests / phpunit / includes / RevisionTestModifyableContent.php
1 <?php
2
3 class RevisionTestModifyableContent extends TextContent {
4
5 public function __construct( $text ) {
6 parent::__construct( $text, "RevisionTestModifyableContent" );
7 }
8
9 public function copy() {
10 return new RevisionTestModifyableContent( $this->mText );
11 }
12
13 public function getText() {
14 return $this->mText;
15 }
16
17 public function setText( $text ) {
18 $this->mText = $text;
19 }
20
21 }