summaryrefslogtreecommitdiffstats
path: root/tests/data/app/code-checker/test-use.php
blob: 9c4824f9767fcfc6c9053c42a96b92467241605f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

use OC_AppConfig as UseConfig;

/**
 * Class BadClass - creating an instance of a blacklisted class is not allowed
 */
class BadClass {
	public function foo() {
		$bar = new UseConfig();
	}
}