nextcloud/tests/data/app/code-checker/test-deprecated-constant-alias.php
2015-07-17 12:34:56 +02:00

12 lines
222 B
PHP

<?php
use OCP\NamespaceName\ClassName as Constant;
/**
* Class BadClass - creating an instance of a blacklisted class is not allowed
*/
class BadClass {
public function test() {
return Constant::CONSTANT_NAME;
}
}