15 lines
314 B
PHP
15 lines
314 B
PHP
<?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 BrokenClass2 extends \Some\Thing\ThatDoesNotExist_8723465 {
|
|
public function aMethod() {
|
|
// noop
|
|
}
|
|
}
|