server/tests/data/app/code-checker/test-deprecated-constant-sub-alias.php

13 lines
222 B
PHP
Raw Normal View History

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