summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MockObjectRepository.php
blob: b9bdb21379a6db24289170acca561ba47cade901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace SMW\Tests\Utils\Mock;

/**
 * Interface describing a MockObjectRepository object
 *
 *
 * @licence GNU GPL v2+
 * @since 1.9
 *
 * @author mwjames
 */
interface MockObjectRepository {

	/**
	 * Returns a DIProperty object
	 *
	 * @since  1.9
	 */
	public function registerBuilder( MockObjectBuilder $builder );

}