Current File : /home/jvzmxxx/wiki1/extensions/Flow/includes/Repository/TitleRepository.php
<?php

namespace Flow\Repository;

use Title;

/**
 * Abstraction for calling stateful methods of the title class. Allows
 * replacing them in unit tests.
 */
class TitleRepository {
	public function exists( Title $title ) {
		return $title->exists();
	}
}