Current File : /home/jvzmxxx/wiki/extensions/Wikibase/repo/includes/Store/ChangeStore.php
<?php

namespace Wikibase\Repo\Store;

use Wikibase\Change;

/**
 * @since 0.5
 *
 * @license GPL-2.0+
 * @author Marius Hoch
 */
interface ChangeStore {

	/**
	 * @param Change $change
	 */
	public function saveChange( Change $change );

}