aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/mocks/BrokenClass3.php
blob: 2f0cfdf94211485c71093bff4be90d11155c9e89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace MediaWiki\Tests;

/**
 * A class that exists but cannot be instantiated because
 * its base class does not exist. For testing logic related
 * to class_exists and is_callable checks.
 */
class BrokenClass3 extends \Some\Thing\ThatDoesNotExist_8723465 {
	public function aMethod() {
		// noop
	}
}