*/ class PageCreator { public function createPage( string $title, string $content = null ) { $page = new \WikiPage( Title::newFromText( $title ) ); $page->doEditContent( new \WikitextContent( $content ?? 'Content of ' . $title ), __CLASS__ . ' creating page ' . $title ); } }