Current File : /home/jvzmxxx/wiki/extensions/Flow/includes/Data/Utils/RecentChangeFactory.php
<?php

namespace Flow\Data\Utils;

/**
 * Provides access to static methods of RecentChange so they
 * can be swapped out during tests
 */
class RecentChangeFactory {
	public function newFromRow( $obj ) {
		$rc = \RecentChange::newFromRow( $obj );
		$rc->setExtra( array( 'pageStatus' => 'update' ) );
		return $rc;
	}
}